码迷,mamicode.com
首页 > Web开发 > 详细

nginx解析php请求为404

时间:2015-09-23 14:57:37      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:

刚搭建了lnmp环境,发现如果讲我的程序放在某个文件夹的时候,然后nginx进行代理的时候竟然会是404;

nginx配置如下:

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

但是怎么请求都是404,

后来发现是liunx权限的问题,发现我的nginx是root用户启动的,但是没有读取morequ的权限

赋权即可:

# chomd 777 /home/morequ
# chomd 777 /home/morequ/morequ-wordpress

 

 

nginx解析php请求为404

标签:

原文地址:http://www.cnblogs.com/lic309/p/4831966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!