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 写的无效!!!



你可能感兴趣的:(nginx,thinkphp)