解决thinkphp从apache迁移到nginx 伪静态问题

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

}经测试可以用

THE END