当前位置: 代码迷 >> Apache >> [nginx] nginx 域名转发如何设置
  详细解决方案

[nginx] nginx 域名转发如何设置

热度:5028   发布时间:2013-02-26 00:00:00.0
[nginx] nginx 域名转发怎么设置啊
http://dj.aa.com/e/1/Play_13360   想这样的地址 
转发到
 http://dj.aa.com:81/e/1/Play_13360  这样 就是在地址后加个端口   就有e 目录 下的连接才有效果 

********************************
 
http://dj.aa.com/e/1/Play_160   想这样的地址   转发到
 http://dj.aa.com:81/e/1/Play_160  这样之类的!              
 

只有进http://dj.aa.com/e/1/Play_15   这样的才转 

http://dj.aa.com/aa /1/Play_160   这样其他不转

规则怎么写啊

------解决方案--------------------------------------------------------
       location ~ ^/.*(\.php
------解决方案--------------------------------------------------------
\.asp)$ {
             proxy_pass   http://www.abc.com;
         }