Nginx反向代理解决跨域问题
打包vue发版到线上后,如果访问后端接口存在跨域问题,则可以在vue的nginx配置文件中添加对后台接口的反向代理设置,解决跨域问题:
location ^~ /api {
rewrite ^/api/(.*)$ /api/$1 break;
proxy_pass http://api.xx.com;
}
打包vue发版到线上后,如果访问后端接口存在跨域问题,则可以在vue的nginx配置文件中添加对后台接口的反向代理设置,解决跨域问题:
location ^~ /api {
rewrite ^/api/(.*)$ /api/$1 break;
proxy_pass http://api.xx.com;
}