无法使用nginx重定向到另一个域

时间:2014-03-10 06:23:34

标签: redirect nginx

嘿,我们将域名从domain1.ourapp.com更改为domain2.ourapp.com

我想使用nginx conf将请求重定向到domain1.ourapp.comdomain2.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的网址会返回正确的响应,但会发生浏览器重定向。我想在这方面提供一些帮助。

0 个答案:

没有答案