Files
2026-07-22 10:18:59 +08:00

24 lines
514 B
Plaintext

# phpstudy / Nginx 伪静态规则(勿用 ThinkPHP 默认「全站转发 index.php」)
# 在 phpstudy → 网站 → 伪静态 中粘贴以下内容:
location ^~ /api {
rewrite ^ /index.php?s=$uri last;
}
# 上传文件直读(可选优化,仍走 PHP 也 OK)
location ^~ /api/uploads/ {
rewrite ^ /index.php?s=$uri last;
}
location ^~ /admin/ {
try_files $uri $uri/ /admin/index.html;
}
location = /admin {
return 301 /admin/;
}
location / {
try_files $uri $uri/ /index.html;
}