技术解析
nginx 反向代理(比如抗投诉服务器访问 url : http://a.com/ ),给后端发送请求后,后端会发出一个完整 url 的 302 跳转( 比如 http://b.com/ url 不是固定的,所以不能直接 rewrite)。
但是 nginx 并不会识别 302 跳转的 http 头,而是直接把两个 url 合并,变成了" http://a.com/ http://b.com/ " 造成访问死循环。
proxy_pass http://localhost:8090;
proxy_set_header Host $host;
用过 proxy_redirect 这个参数,怎么设置也不对,整了半天也没搞定,来请教一下该怎样实现