后端项目是php写的,请求都是这个样子的
https://xxxx.com/index.php?i=666&urls=massage/app/Index/confi...
所有的请求路径都是https://xxxx.com/index.php不通的接口只是urls=massage/app/Index/configInfo在改变,
我的项目是uniapp,现在不知道该怎么配置这个代理了。请问怎么配置?
一下是我尝试过的,但是没效果:
"devServer" : {
"https" : true,
"proxy": {
"/": {
"target": "https://xxxxx.com",
"changeOrigin": true,
"pathRewrite": {
"^/": "/index.php"
}
}
}
},