Nginx 提示No input file specified.

WBOY
WBOYオリジナル
2016-06-06 20:21:061364ブラウズ

配置文件

<code>location ~ \.php$ {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            #fastcgi_split_path_info ^(.+\.php)(/?.*)$;
            #fastcgi_param PATH_INFO $fastcgi_path_info;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }
</code>

回复内容:

配置文件

<code>location ~ \.php$ {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            #fastcgi_split_path_info ^(.+\.php)(/?.*)$;
            #fastcgi_param PATH_INFO $fastcgi_path_info;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }
</code>

nginx的话,可以把当前的配置文件整个贴出来。这个No input file specified其实在客户端那边报的是404,然后你root 指向哪个文件夹,然后那个文件夹里面是否有你想访问的文件。

请确保你的有正确的

<code>root /path/to/web #这里是你的服务器根目录</code>
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。