301在nginx中重定向

时间:2018-03-06 22:33:33

标签: redirect nginx nginx-location

我正在尝试将网址从一个域重定向到nginx中的另一个域。

URL 1 - http://domain1/event/ert123

URL 2 - http://domain2/event/dfe456

我使用了以下代码,但无效。

   #Test event
   location /event/ert123 {
        return 301 http://domain2.com/$request_uri
   }

非常感谢任何帮助。提前谢谢。

1 个答案:

答案 0 :(得分:1)

为什么$request_uri?也许是这样的?

  location /event/ert123 {
        return 301 http://domain2.com/event/dfe456
   }