vue前端: vue.config.js里面
devServer: {
open: true,
proxy: {
'/apis': {
target: 'https://www.baidu.com/',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/apis': '/'
}
}
}
}
nginx配置:
location /apis {
rewrite ^/apis/(.*)$ /$1 break;
proxy_pass https://www.baidu.com/;
}