DoubleLi

qq: 517712484 wx: ldbgliet

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

当nginx代理的后端服务器有301、302重定向时,我们可以通过proxy_redirect来重写Location请求头。

例如:

location /test/ {
proxy_pass http://127.0.0.1:8000;
}
上面的配置中
访问xxx.com/test/,会被反向代理到后端的http://127.0.0.1:8000/test/

由于http://127.0.0.1:8000/test/这个地址会重定向到http://127.0.0.1:8000/index/

此时浏览器会跳转到http://127.0.0.1:8000/index/,127.0.0.1的地址肯定不是我们希望返回的结果。

在上面的配置中做一些修改:

location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) $1;
}
现在的返回结果就是xxx.com/test/index

一些其他的url转换:

location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) $1;
} # http://127.0.0.1:8000/index/ ==> http://xxx.com/test/index/

location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) aaa/$1;
} # http://127.0.0.1:8000/index/ ==> http://xxx.com/test/aaa/index/

location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) /aaa/$1;
} # http://127.0.0.1:8000/index/ ==> http://xxx.com/aaa/index/

location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) $schema://$host/$1;
} # http://127.0.0.1:8000/index/ ==> http://xxx.com/index/

location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) http://soulchild.cn/$1;
} # http://127.0.0.1:8000/index/ ==> http://soulchild.cn/index/

posted on 2021-04-23 11:07  DoubleLi  阅读(1856)  评论(0编辑  收藏  举报