php - windows 上nginx提示no input file specified,我都按网上的配置了哈?

查看:119
本文介绍了php - windows 上nginx提示no input file specified,我都按网上的配置了哈?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

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

这篇关于php - windows 上nginx提示no input file specified,我都按网上的配置了哈?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆