Nginx + php fastcgi显示"没有指定输入文件。"而不是404

时间:2016-12-29 13:53:50

标签: php nginx fastcgi fpm

我的问题很简单。

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

我知道我将带有.php扩展名的所有请求传递给php-fpm,我想php-fpm返回"没有指定输入文件。"当文件不存在时(?)。 我该如何解决这个问题?

/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;

1 个答案:

答案 0 :(得分:1)

我想通了

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

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