Merge pull request 'update' (#4) from dev into master

Reviewed-on: #4
This commit is contained in:
weiz 2023-11-21 13:38:24 +08:00
commit 0b3390bdfc
2 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View File

@ -6,4 +6,3 @@
!/public/uploads/index.html
/runtime/*
!/runtime/index.html
/public/nginx.htaccess

5
public/nginx.htaccess Normal file
View File

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