nginx api反代去掉/api前缀
我们将前后端分离的前端部署用nginx实现,
在location /部署上前端的web,
location /{
root /software_install/xxx/web;
index index.html index.htm;
}
使用^~开头,这样会去掉/api前缀。例如访问/api/user,实际反代回去的请求url会是/user
location ^~/api/{
proxy_pass http://localhost:8080/;
}
本文来自博客园,作者:HumorChen99,转载请注明原文链接:https://www.cnblogs.com/HumorChen/p/18039450