nginx转发移除上下文(去掉匹配路径)方法
去除上下文
1. location和proxy_pass都带/,可去除上下文
location ^~/api/ { proxy_pass http://api/; }
2. rewrite去除
http://api 的 api后面不带/, 通过rewrite移除api这个上下文
location ^~/api/ { rewrite ^/api/(.*)$ /$1 break; proxy_pass http://api; }
保留上下文
1. location不带/, proxy_pass不带上下文,会保留上下文
2. location带/, proxy_pass不带/,会保留上下文
# 转发示例 # 请求:http://aaa.com/system/path/request # 转发:http://bbb.com/system/path/request # location ^~ /system { proxy_pass http://bbb.com; }