本教程将帮助您如何请求重定向到NGINX Web服务器另一个域名。如果你有计划或更改您的域名,并希望将流量重定向到旧域名服务器的新域名这是必需的。 首先,编辑您的 nginx 域名配置文件,并添加配置,按您的重定向的要求。
$ vi /etc/nginx/sites-enabled/mydomain.com.conf
1. 重定向所有请求到特定网址
这将所有传入请求重定向域名给url http://anotherdomain.com/dir1/index.php,如下配置。
server {
listen 192.168.1.100:80;
server_name mydomain.com;
return 301 http://anotherdomain.com/dir1/index.php;
}
2. 重定向所有请求其他域名
这将在域名中的所有传入的请求重定向到另一个域名(http://anotherdomain.com/)与相应的请求的URL和查询字符串。
server {
listen 192.168.1.100:80;
server_name mydomain.com;
return 301 http://anotherdomain.com$request_uri;
}
3. 将请求重定向与特定协议
这将在域名中的所有传入的请求重定向到另一个域名(http://anotherdomain.com/)与相应的请求的URL和查询字符串。它也将使用重定向的URL相同的协议。
server {
listen 192.168.1.100:80;
server_name mydomain.com;
return 301 $scheme://anotherdomain.com$request_uri;
}
做上述更改后,重新启动服务器NGINX重新加载新添加的配置。