Nginx 地址替换
实际访问地址
http://xxx.com/test/api/micro/GetDev
代理后 将url中test替换掉
http://xxx.com/api/micro/GetDev
修改 Nginx 配置文件 nginx.conf 中 server 节点
location /test/ {
rewrite "^\/test\/(.*)$" /$1 break;
proxy_pass http://localhost:5000;
break;
}
http://xxx.com/test/api/micro/GetDev
http://xxx.com/api/micro/GetDev
location /test/ {
rewrite "^\/test\/(.*)$" /$1 break;
proxy_pass http://localhost:5000;
break;
}