Files
coolcoth.com/bt-nginx-rewrite.conf
T
2026-08-08 16:26:31 +08:00

16 lines
772 B
Plaintext

# ============================================================
# 酷冰甲官网 - 宝塔(Nginx) 伪静态配置(粘贴到 网站→设置→伪静态)
# ⚠️ 这是 Nginx 语法, 不要和 Apache 的 .htaccess 混用
# 前提: 运行目录已设为 /public
# ============================================================
# 前端控制器: 真实文件/目录直接服务, 其余转发到 public/index.php
# 必须带 ?$query_string, 以保留原始 REQUEST_URI 供本项目路由解析
try_files $uri $uri/ /index.php?$query_string;
# Let's Encrypt HTTP-01 验证路径(否则证书签发 404)
location ^~ /.well-known/acme-challenge/ {
root /www/wwwroot/st-joyapparel.com; # 改成你的项目真实根目录(不含 /public)
default_type text/plain;
}