警告
本文最后更新于 2020-11-05 10:15,文中内容可能已过时。
当nginx代理的后端服务器有301、302重定向时,我们可以通过proxy_redirect来重写Location请求头。
例如:
1
2
3
| 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的地址肯定不是我们希望返回的结果。
在上面的配置中做一些修改:
1
2
3
4
| location /test/ {
proxy_pass http://127.0.0.1:8000;
proxy_redirect ~^http://127.0.0.1/(.*) $1;
}
|
现在的返回结果就是xxx.com/test/index
一些其他的url转换:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| 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/
|