thinkphp nginx 配置

洋蔥土豆隨心匠發表於2016-06-23
thinkphp convention配置:
'URL_MODEL' => '2', //URL模式

nginx rewrite配置:
 if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=$1  last;
   break;
    }

如果你的ThinkPHP安裝在二級目錄,Nginx的偽靜態方法設定如下,其中youdomain是所在的目錄名稱
location /youdomain/ {
        if (!-e $request_filename){
            rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=$1  last;
        }
    }
 

相關文章