码迷,mamicode.com
首页 > 其他好文 > 详细

nginx环境搭建遇到的一些问题汇总

时间:2016-07-06 16:32:07      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

1、如何隐藏入口文件。

  location / {
            index  index.html index.htm index.php l.php;
            try_files $uri $uri/ /index.php?$query_string;
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=$1  last;
                break;
            }
        }

技术分享

2、通过官网下载的lnmp压缩包装的环境,项目上传了以后 死活不解析php文件,奇了怪了。我们配置的是二级域名,一级域名访没问题,二级域名能访问但是php文件不解析

解决方案:

技术分享

一开始用的是 #号注释的部分,死活不解析,改成红框内的就可以解析了

 location ~ \.php$ {
            #try_files $uri =404;
            fastcgi_keep_conn on;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }

nginx环境搭建遇到的一些问题汇总

标签:

原文地址:http://www.cnblogs.com/wamptao/p/5647291.html

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