通过nginx 访问thinkphp

修改 nginx的配置文件:

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

posted @ 2017-02-08 18:45  李修远  阅读(1413)  评论(0编辑  收藏  举报