Nginx No input file specified. 设置成指定404页面
fastcgi_intercept_errors
syntax: fastcgi_intercept_errors on|off
default: fastcgi_intercept_errors off
context: http, server, location
这个指令用来决定是否要把客户端转向4xx和5xx错误页,或允许Nginx自动指定错误页页。
注意:你需要在此明确错误页,它才是有用的。Igor 曾说:“如果没有定制的处理机制,Nginx不会拦截一个没有缺省页的错误。Nginx 只会拦截一些小的错误,放过其他一些。
在nginx.conf http区添加
fastcgi_intercept_errors on;
默认他是关闭的。
在server添加
error_page 404 = /404.html;
重启nginx完成。