欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-28 19:57:34
...
配置如下:
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里没有定义

相关标签: nginx 404 php