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;
}
posted @ 2021-05-22 12:02  忆秋年枫叶情  阅读(1285)  评论(0)    收藏  举报