auto_lnmp/conf/rewrite/thinkphp.conf
2021-08-19 06:35:24 +08:00

6 lines
114 B
Plaintext

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