Redirect from old site to new site except the homepage of old site: Using .htaccess

Discussion in 'PHP' started by ecolatur, Jul 7, 2011.

  1. #1
    I need to redirect all pages on the old site to all pages on new site except the homepage. i.e. index.php

    Presently I am redirecting all pages, but don't know how to add that exception for homepage..

    RewriteEngine on
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] 
    Code (markup):
     
    ecolatur, Jul 7, 2011 IP
  2. Kyosys

    Kyosys Peon

    Messages:
    226
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #2
    ! means not in regex. Thusly you can add a rewrite rule to exclude results that match the regex followed by the !
     
    Kyosys, Jul 8, 2011 IP
  3. yusuyi

    yusuyi Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You could add a line before rewrite

    RewriteEngine on
    RewriteRule ^index.html$ index.html [R=301,L]
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
     
    yusuyi, Jul 10, 2011 IP