How to do 301 redirect for a angularjs website

后端 未结 1 1617
温柔的废话
温柔的废话 2021-01-26 08:49

We have angularJs website and currently we have a requirement we need to do a 301 redirect from the site for example if user access \"A\"page mysite.com/A, we need to redirect t

1条回答
  •  一整个雨季
    2021-01-26 09:28

    Add this to your nginx server config:

    location = /A { return  301 http://mysite.A.com/;   }
    

    0 讨论(0)
提交回复
热议问题