代码改变世界

nginx地址重写

2015-11-24 11:46  cmsd  阅读(395)  评论(0)    收藏  举报

1. 域名重定向

server_name wx.he.com weixin.ha.com;

        if ($http_host !~* "wx\.he\.com"){
                rewrite ^/(.*)$ http://wx.he.com/$1 permanent;
        }