vue项目 想用nginx解决跨域问题
下面问题我知道原因了,现在遇到了新问题,nginx监听8080端口,好把locahost:8080/apis转成别的地址,但是node也在监听8080冲突了怎么办
配置:
server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location /apis{ proxy_pass http://baidu.com; } }
这样配置以后,访问http://localhost:8080/apis会跳到http://localhost:8080/apis#/index 而不是baidu.com怎么办?
相关分类