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

thinkphp 3.2 linux系统配置

时间:2016-07-07 13:01:28      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

详解:http://document.thinkphp.cn/manual_3_2.html#url_rewrite

 

阿里云系统配置thingkphp 3.2

1.该配置

ftp位置:/etc/nginx/conf.d/default.conf

增加代码

(更目录下安装)

 location / { // …..省略部分代码
   if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=$1  last;
   break;
    }
 }

(二级目录安装)

location /youdomain/ {
    if (!-e $request_filename){
        rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=$1  last;
    }
}

 

thinkphp 3.2 linux系统配置

标签:

原文地址:http://www.cnblogs.com/wesky/p/5649623.html

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