admin 管理员组文章数量: 887016
nginx
当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/ ==> /
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/ ==> /
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/ ==> /
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/ ==> /
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/ ==> /
分类: nginx
本文标签: nginx
版权声明:本文标题:nginx 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1686721425h29242.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论