当前位置:Gxlcms > PHP教程 > windows上nginx提示noinputfilespecified,我都按网上的配置了哈?

windows上nginx提示noinputfilespecified,我都按网上的配置了哈?

时间:2021-07-01 10:21:17 帮助过:54人阅读

server {
        listen       80;
        server_name  m.test.com;

        
        ## Root and index files.
        root html/test;
        index  index.php index.html index.htm;

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

         location / {
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
         }

       

       
    }

回复内容:

server {
        listen       80;
        server_name  m.test.com;

        
        ## Root and index files.
        root html/test;
        index  index.php index.html index.htm;

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

         location / {
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
         }

       

       
    }

有可能是这个问题:root html
可能需要写完整:root /html

windows上你的root最好用绝对地址 比如D:/www

人气教程排行