重构更新

This commit is contained in:
技术老胡
2024-10-19 10:06:09 +08:00
parent 01b6a4d084
commit b8196c6c41
864 changed files with 328294 additions and 0 deletions

8
public/nginx.htaccess Normal file
View File

@@ -0,0 +1,8 @@
location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}