当前位置:Gxlcms > PHP教程 > 请教关于nginx配置404错误页面

请教关于nginx配置404错误页面

时间:2021-07-01 10:21:17 帮助过:24人阅读

配置如下:

error_page   400 401 402 403 404  /40x.html;
location = /40x.html {
    root /Library/WebServer/public_html/dev/;
}

生效后,访问下面网页

  • http://dev.com/u.php 提示:File not found.
  • http://dev.com/abc.html 返回指定的error页面

请问这是怎么回事,要怎么解决?

回复内容:

配置如下:

error_page   400 401 402 403 404  /40x.html;
location = /40x.html {
    root /Library/WebServer/public_html/dev/;
}

生效后,访问下面网页

  • http://dev.com/u.php 提示:File not found.
  • http://dev.com/abc.html 返回指定的error页面

请问这是怎么回事,要怎么解决?

(1)检查server模块里fastcgiintercepterrors是否开启,命令

fastcgi_intercept_errors on;

(2)检查location匹配40x的根目录是否有404页面,以及权限配置
(3)配置完成后,是否reload或者restart nginx服务器
(4)nginx本身是无法解析php的,所以需要通过fastcgi代理给fpm来解析php文件,我不写具体配置了,google即可
(5)php脚本错误,抛出的可能是50x错误,你的error_page里没有定义

人气教程排行