htaccess: redirect all requests to different domain (without query arguments)

后端 未结 2 776
悲&欢浪女
悲&欢浪女 2021-02-19 16:31

How can I redirect all requests (irrespective of what page is being requested) on sub.domain.com to newdomain.com? Currently I have

Redirect 301 / http://www.new         


        
2条回答
  •  眼角桃花
    2021-02-19 16:45

    RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com$
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
    

    That will forward any GET requests.

提交回复
热议问题