nginx域名重定向

访问 www.hello.com转到 www.qikangwei.com
server_name   www.hello.com;
if ($host='www.hello.com')
{
  rewrite ^/(.*)$ http://www.qikangwei.com$1 permanent;
}

你可能感兴趣的:(nginx域名重定向)