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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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