Nginx配置proxy_pass转发的/路径问题

Posted guuyoog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx配置proxy_pass转发的/路径问题相关的知识,希望对你有一定的参考价值。

nginx中配置proxy_pass时,如果是按照^~匹配路径时,要注意proxy_pass后的url最后的/,当加上了/,相当于是绝对根路径,则nginx不会把location中匹配的路径部分代理走;如果没有/,则会把匹配的路径部分也给代理走。

例如访问http://guuyoog.com/a/index.html

location ^~ /a/ 

proxy_pass http://test.com/
}

-->  http://test.com/index.html

 

location ^~ /a/ 

proxy_pass http://test.com
}

-->  http://test.com/a/index.html







以上是关于Nginx配置proxy_pass转发的/路径问题的主要内容,如果未能解决你的问题,请参考以下文章

Nginx配置proxy_pass转发的/路径问题

nginx 转发配置

proxy_pass根据path路径转发时的"/"问题记录

nginx 之proxy_pass

nginx proxy_pass

nginx 之 proxy_pass详解