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

phpshe b2c商城系统配置nginx支持pathinfo和rewrite的写法

时间:2017-06-04 14:43:24      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:include   root   style   nginx   环境配置   stc   ati   ...   dex   

找到/usr/local/webserver/nginx/conf/nginx.conf文件(环境配置不一样,路径也可能不一样)

并在server {...省略掉的代码}中添加如下代码即可(如果程序放在根目录下用一级目录代码,放在二级目录,请用二级目录代码),改好后重启nginx:



###############开启pathinfo支持(如果已开启请忽略此处)##############

location ~ \.php {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include fcgi.conf;
        set $real_script_name $fastcgi_script_name;
            if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
            set $real_script_name $1;
            set $path_info $2;
        }
        fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
        fastcgi_param SCRIPT_NAME $real_script_name;
        fastcgi_param PATH_INFO $path_info;
}


###############配置伪静态(一级目录下隐藏index.php)##############

if (!-e $request_filename) {
        ###程序放在一级目录下(如:http://www.phpshe.com/)
        rewrite ^/(.*)$ /index.php/$1 last;
}


###############配置伪静态(二级目录下隐藏index.php)##############

if (!-e $request_filename) {
        ###程序放在二级目录下(如:http://www.phpshe.com/shop/)
        rewrite ^/二级目录名/(.*)$ /二级目录名/index.php/$1 last;
}

phpshe b2c商城系统配置nginx支持pathinfo和rewrite的写法

标签:include   root   style   nginx   环境配置   stc   ati   ...   dex   

原文地址:http://www.cnblogs.com/koyshe/p/6940356.html

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