1. 程式人生 > >Thinkphp 3.2 Nginx 偽靜態寫法15年7月最新有效

Thinkphp 3.2 Nginx 偽靜態寫法15年7月最新有效

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

 }

在server 中建立如上內容。

然後儲存,重新載入就可以了。

經過試驗 http://doc.thinkphp.cn/manual/hidden_index.html 寫的無效!!!