修改默认的伪静态规则

This commit is contained in:
2022-05-05 17:52:10 +08:00
parent 1442498042
commit 7ecd0abab8

5
nginx.conf Normal file
View File

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