permenant redirects...

Discussion in 'Site & Server Administration' started by kes, Aug 8, 2007.

  1. #1
    hope this can be answered here...

    I have a forum which has been copied to a new domain/host and all the old copy files are still on the old server.

    the old server has also got my ecommerce shop which i dont want to remove but i need all the forum pages redirected to my new domain.

    what is the easiest way to do this, in simple form please

    Thanks
     
    kes, Aug 8, 2007 IP
  2. bouncer69

    bouncer69 Peon

    Messages:
    978
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #2
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.olddomain.com$
    RewriteRule ^/?(.*)$ http://www.newdomain.com/$1 [R=301,L]
     
    bouncer69, Aug 9, 2007 IP