fix(deploy): staging C端 H5 根路径部署,去掉 /user 前缀

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-03 20:22:51 +08:00
parent ffa753707b
commit d90847bad0
3 changed files with 26 additions and 5 deletions
+8
View File
@@ -69,6 +69,14 @@ server {
proxy_set_header Connection "";
}
# 旧 /user 前缀书签 → 根路径(staging 独立域名,无 /user 子路径)
location = /user {
return 301 /;
}
location ^~ /user/ {
rewrite ^/user/(.*)$ /$1 permanent;
}
location / {
proxy_pass http://127.0.0.1:8191;
proxy_http_version 1.1;