Compare commits

...

2 Commits

Author SHA1 Message Date
weiz 0b3390bdfc Merge pull request 'update' (#4) from dev into master
Reviewed-on: #4
2023-11-21 13:38:24 +08:00
weiz c119ea160b update 2023-11-21 13:31:53 +08:00
2 changed files with 6 additions and 2 deletions

3
.gitignore vendored
View File

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

5
public/nginx.htaccess Normal file
View File

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