代码改变世界

nginx地址重写

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

1. 域名重定向

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

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