Redirect All via 301 in htaccess

Discussion in 'Apache' started by clasione, Nov 24, 2006.

  1. #1
    How do I redirect all pages of one domain to another.....

    I want to move all subfolders, pages, directories, and everything to the homepage of a different site.

    I am not maintaining current file structure.

    Is there a one liner that will accomplish this?
     
    clasione, Nov 24, 2006 IP
  2. clasione

    clasione Notable Member

    Messages:
    2,362
    Likes Received:
    158
    Best Answers:
    0
    Trophy Points:
    228
    #2
    ok ----- This looks like it:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} [url]www.website1.com[/url]
    RewriteRule ^(.*) [url]http://www.website2.com/[/url] [L,R=301]
    Code (markup):
     
    clasione, Nov 24, 2006 IP