nginx服务器下访问不存在的php页面No input file specified. _PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > nginx服务器下访问不存在的php页面No input file specified.

nginx服务器下访问不存在的php页面No input file specified.

 2011/9/29 8:04:50  275553385  http://jimingsong.iteye.com  我要评论(0)
  • 摘要:nginx服务器下访问不存在的非php页面,可以正常出现自定义的404提示页,但是访问不存在的php页面,页面信息显示初步估计是fastcgi没把错误给Nginx查了下nginx的文档果然fastcgi_intercept_errorssyntax:fastcgi_intercept_errorson|offdefault:fastcgi_intercept_errorsoffcontext:http,server,location默认的是off只需在虚拟主机配置文件加入
  • 标签:file PHP Nginx 服务器 服务
nginx服务器下访问不存在的非php页面,可以正常出现自定义的404提示页,但是访问不存在的php页面,页面信息显示
初步估计是fastcgi没把错误Nginx
查了下nginx的文档 果然
fastcgi_intercept_errors
syntax: fastcgi_intercept_errors on|off
default: fastcgi_intercept_errors off
context: http, server, location 
默认的是off

只需在虚拟主机配置文件加入:
fastcgi_intercept_errors on;

即可。我配置了error_page 404,没有使用nginx默认的404提示页面。
效果图:
发表评论
用户名: 匿名