nginx地址重写

1. 域名重定向

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

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

 

你可能感兴趣的:(nginx地址重写)