nginx thinkphp rewrite配置项

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

猜你喜欢

转载自www.cnblogs.com/yangcclg/p/9073206.html