Heim >Backend-Entwicklung >PHP-Tutorial >Nginx 提示No input file specified.

Nginx 提示No input file specified.

WBOY
WBOYOriginal
2016-06-06 20:21:061379Durchsuche

配置文件

<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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn