Add files via upload

This commit is contained in:
LoveesYe
2022-07-14 21:00:43 +02:00
committed by GitHub
parent cdfc99260e
commit 890016ca37

5
web/nginx伪静态.txt Normal file
View File

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