>백엔드 개발 >PHP 튜토리얼 >Windows의 nginx에 지정된 입력 파일이 없다는 메시지가 표시됩니다. 온라인 구성을 따랐습니까?

Windows의 nginx에 지정된 입력 파일이 없다는 메시지가 표시됩니다. 온라인 구성을 따랐습니까?

WBOY
WBOY원래의
2016-09-12 17:44:521305검색

<code>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;
            }
         }

       

       
    }
</code>

Windows의 nginx에 지정된 입력 파일이 없다는 메시지가 표시됩니다. 온라인 구성을 따랐습니까?

답글 내용:

<code>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;
            }
         }

       

       
    }
</code>

Windows의 nginx에 지정된 입력 파일이 없다는 메시지가 표시됩니다. 온라인 구성을 따랐습니까?

문제일 수 있습니다: 루트 html
완전히 작성해야 할 수도 있습니다: 루트 /html

Windows에서는 D:/www와 같은 절대 주소를 루트에 사용하는 것이 가장 좋습니다

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.