Redirect all traffic to root of another domain

后端 未结 2 1981
醉话见心
醉话见心 2020-12-02 17:09

I have a domain that\'s not to be used anymore. I want to redirect all from http://www.old.com/ to http://www.new.com/, no matter what page the use

相关标签:
2条回答
  • 2020-12-02 17:29

    Put this code in your ROOT .htaccess on www.old.com

    Options +FollowSymLinks -MultiViews
    RewriteEngine on
    
    RewriteCond %{HTTP_HOST} ^(www\.)?old\.com$ [NC]
    RewriteRule ^ http://www.new.com/ [R=301,L]
    

    This rule will externally redirect all www.old.com/* to www.new.com/

    0 讨论(0)
  • 2020-12-02 17:31

    From http://www.webconfs.com/how-to-redirect-a-webpage.php I'd say you can use the following configuration

    Don't redirect subfolders/files (as you wanted): www.example.com/demo/ -> www.newexampledomain.com

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*) http://www.newdomain.com/ [R=301,L]
    

    Redirect to subfolders/files: www.example.com/demo/ -> www.newexampledomain.com/demo/

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
    
    0 讨论(0)
提交回复
热议问题