proxy_redirect
时间: 2023-09-13 08:04:24 浏览: 177
proxy
proxy_redirect是一个用来修改被代理服务器返回的响应头中的Location头域和"refresh"头域的指令。它的语法结构是:proxy_redirect 旧地址 新地址。通过这个指令,可以将被代理服务器返回的Location字段中的旧地址替换为新地址。如果想要使用默认配置,可以设置proxy_redirect default;如果想要关闭重定向,可以设置proxy_redirect off。举个例子,如果设置了proxy_redirect http://localhost:8000/two/ http://frontend/one/,那么被代理服务器返回的Location字段中的http://localhost:8000/two/会被替换为http://frontend/one/。 举个案例,假设被代理服务器返回Location字段为http://localhost:8000/two/some/uri/,如果设置了proxy_redirect http://localhost:8000/two/ http://frontend/one/,那么返回的Location字段就会变为http://frontend/one/some/uri/。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
阅读全文