嘿,我们将域名从domain1.ourapp.com
更改为domain2.ourapp.com
我想使用nginx conf将请求重定向到domain1.ourapp.com
到domain2.ourapp.com
。我希望浏览器网址也能改变。
在nginx conf中我有以下
server {
listen 80;
rewrite ^ https://$host$request_uri? permanent;
}
server {
server_name domain1.ourapp.com;
rewrite ^ $scheme://domain2.ourapp.com$request_uri permanent;
}
server {
listen 443 ssl;
server_name domain2.ourapp.com
# rest of the stuff
}
麻烦的是,domain1.ourapp.com
的网址会返回正确的响应,但会发生浏览器重定向。我想在这方面提供一些帮助。