环境:前端使用nginx发布程序
问题:通过前端跳转后端出现跨域问题。
处理方式:在前端的nginx配置文件中加入对应的后端访问路径
location /app2 { proxy_pass http://app2; #对应app2服务 }