如何使用 NGINX 重定向到不同的域?

问题描述:

如何使用 NGINX 将 mydomain.com 和任何子域 *.mydomain.com 重定向到 www.adifferentdomain.com?

How can I redirect mydomain.com and any subdomain *.mydomain.com to www.adifferentdomain.com using NGINX?

server_name 支持使用 .mydomain.com 语法:

server_name supports suffix matches using .mydomain.com syntax:

server {
  server_name .mydomain.com;
  rewrite ^ http://www.adifferentdomain.com$request_uri? permanent;
}

或任何 0.9.1 或更高版本:

or on any version 0.9.1 or higher:

server {
  server_name .mydomain.com;
  return 301 http://www.adifferentdomain.com$request_uri;
}