chore: 更新配置文件说明

This commit is contained in:
2025-11-18 16:38:26 +08:00
parent 332f121a8a
commit 6324a847af
4 changed files with 50 additions and 47 deletions

View File

@@ -1,6 +1,8 @@
# Nginx 配置片段
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
# 如果文件不存在,则重写到 index.php 文件
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}