nginx 配置重定向到另一个地址
📅 2026/8/2 20:23:44
👁️ 阅读次数
📝 编程学习
配置如下:
location /InviteFriends { alias /app/web/InviteFriends; index index.html; # 除去index.html 的重定向到/InviteFriends/#/且保留参数 if ($uri ~* /InviteFriends/(?!index\.html).+\.html$) { return 301 /InviteFriends/#/$is_args$args; } try_files $uri $uri/ /InviteFriends/index.html; }配置后记得更新ng
编程学习
技术分享
实战经验