错误页面
路由信息
- 模板路径:
/templates/error/{404,4xx,500,5xx,error}.html
- 访问路径:无固定访问路径,由异常决定
提示
错误页面的可使用模板由状态码决定,例如 404 状态码对应的模板为 /templates/error/404.html
或者 /templates/error/4xx.html
。也可以使用 /templates/error/error.html
作为默认模板。
识别顺序如下:
/templates/error/404.html
/templates/error/4xx.html
/templates/error/error.html