Nginx + php fastcgi显示“未指定输入文件".而不是404 [英] Nginx + php fastcgi showing "No input file specified." instead of 404

查看:168
本文介绍了Nginx + php fastcgi显示“未指定输入文件".而不是404的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的问题很简单.

当我请求一个不存在的.php文件时,看到的是未指定输入文件.",而不是您期望的404页面.

When I request a .php file that doesn't exist, I see "No input file specified.", instead of the 404 page that you would expect.

我知道我正在将所有扩展名为.php的请求传递给php-fpm,并且我猜想php-fpm返回未指定输入文件".文件不存在时(?). 我该如何解决?

I get that i am passing all requests with a .php extension to php-fpm, and i guess that php-fpm returns "No input file specified." when the file does not exist(?). How do i fix this?

/etc/nginx/nginx.conf:

/etc/nginx/nginx.conf:

http {
    server {
            listen              443 ssl;
            server_name         smarthome.dk;
            ssl_certificate     /home/www/SmartHome/cert/ssl.crt;
            ssl_certificate_key /home/www/SmartHome/cert/ssl.key;
            ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
            ssl_ciphers         HIGH:!aNULL:!MD5;
            keepalive_timeout   70;

            root /home/www/SmartHome/public_html;
            index index.php index.html;

            location / {
                    try_files $uri $uri/ /404.php?$args;
            }
            location ~ \.php$ {
                    fastcgi_pass unix:/var/run/php5-fpm.sock;
                    fastcgi_index index.php;
                    include fastcgi_params;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                    fastcgi_intercept_errors on;
            }
    }

我在/etc/php5/fpm/php.ini中有cgi.fix_pathinfo = 0;.

I have cgi.fix_pathinfo = 0; in /etc/php5/fpm/php.ini.

推荐答案

我知道了

您需要将try_files $uri $uri/ /404.php?$args;添加到location ~\.php$

未指定输入文件,因为该文件不存在,因此不会传递. try_files $uri $uri/ /404.php?$args;检查文件是否确实存在,否则将重定向到404.php

No input file is specified because the file does not exist, and therefore is not passed. try_files $uri $uri/ /404.php?$args; checks that the file does actually exist, otherwise it redirects to 404.php

这篇关于Nginx + php fastcgi显示“未指定输入文件".而不是404的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆