问题描述
目前情况是这样的,我nginx配置好了!但对转发这块不熟悉,找资料弄来也没有成功!
我有A域名 www.a.cn 主站
然后A主站里的请求到要到 B C等站下去 由于是二级域名跨域了,请法完成前后端请求!
我要把www.a.cn/api/xxx/xx转发到api.a.cn/api/xxx/xx
把www.a.cn/user/xxx/xx转发到api.a.cn/user/xxx/xx
把www.a.cn/mch/xxx/xx转发到mch.a.cn/mch/xxx/xx
谢谢大伙,然后谁有在线完整的nginx配置资料啊!
问题解答
回答1:server { listen 80; server_name www.a.cn; index index.html index.htm index.php; root 网站根目录;location /api { proxy_pass http://api.a.cn; }location /user {proxy_pass http://api.a.cn; }location /mch {proxy_pass http://mch.a.cn; }}
试试