需求:已经有一个域名https://a.cn,然后想让访问a域名的直接访问https://b.cn
**这里需要在a服务器的nginx配置。**
配置
location /xxx {
root /usr/local/nginx/html;
rewrite ^(.*) https://b.cn$1 permanent;
}
需求:已经有一个域名https://a.cn,然后想让访问a域名的直接访问https://b.cn
**这里需要在a服务器的nginx配置。**
location /xxx {
root /usr/local/nginx/html;
rewrite ^(.*) https://b.cn$1 permanent;
}