http-proxy-middle代码URL的问题
app.use(`/apiProxy`, proxy({
target: 'http://172.17.123.131:10241',
// target: 'http://172.17.123.216:4000',
changeOrigin: true,
logLevel: 'debug',
proxyReq: function (req) {
console.log(req)
}
}));
when i ajax get('/apiProxy/TaxRate/GetTaxRates') i want to refer to http://172.17.123.131:10241/TaxRate/GetTaxRates
not http://172.17.123.131:10241/apiProxy/TaxRate/GetTaxRates
How did i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个中间件有一个pathRewrite属性,你对着文档设置一下就行了。
add
pathRewrite
like: