www.legu.cc/Nginx.conf
2021-09-06 11:50:33 +08:00

7 lines
133 B
Plaintext

location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}