标签:nginx 404
新配置一个新的服务器后,访问失败,nginx 配置有404 页面,但仍然报 file not found
error_page 404 http://xxx.com/404.html;
查了一下资料,需要在nginx 关于fastcgi配置一个参数:
fastcgi_intercept_errors on;
关于:
fastcgi_intercept_errors
语法:fastcgi_intercept_errors on|off
默认值:fastcgi_intercept_errors off
使用字段:http, server, location
这个指令指定是否传递4xx和5xx错误信息到客户端,或者允许nginx使用error_page处理错误信息。
你必须明确的在error_page中指定处理方法使这个参数有效,正如Igor所说“如果没有适当的处理方法,nginx不会拦截一个错误,这个错误不会显示自己的默认页面,这里允许通过某些方法拦截错误。
本文出自 “运维菜鸟” 博客,请务必保留此出处http://ckl893.blog.51cto.com/8827818/1682249
nginx 添加404页面后,仍然提示file not found
标签:nginx 404
原文地址:http://ckl893.blog.51cto.com/8827818/1682249