如何将 nginx 中的特定 URL 重定向到不同的 URI 路径?
我希望处理密码重置的成功,以重定向到同一子域上不同 Web 应用程序的登录页面。
例如 ( https://subdomain.example.com/webapp/login/login.action#/?passwordUpdate=true
-> https://subdomain.example.com/webapp2/
)。
我尝试了以下操作,但似乎没有击中位置块。
location ~/webapp/login/login.action#/?passwordUpdate=true {
return 301 https://subdomain.example.com/webapp2/;
}