Forum Moderators: buckworks & webwork

Message Too Old, No Replies

redirecting from multiple sites to one site

a common topic... - merging sites and not losing visitors

         

tomsk

11:50 am on Jan 13, 2003 (gmt 0)



Currently we have 4 different websites, each separately hosted, 4 separate domain names.

We want to merge them, but not to lose visitors, so some kind of redirect is needed.

From scanning the posts here, am I right in thinking that I need to get the hosts to put a 301 permanent redirect for each of the domain names, pointing to the domain name of the merged site?

Is it possible to specify a particular page for the visitors to be redirected to? ie www.newsite.com/explanationofredirection.html

thank you!

Brett_Tabke

11:58 am on Jan 13, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month


Welcome to the board. You are on the right track. If you are using apache, an .htaccess file at the old location is all that is needed.

Redirect 301 /home/oldsite http://www.newdomain.com/explain.htm

Note, that the first is the absolute path on the server, while the second is the redirect destination URL.

tomsk

12:03 pm on Jan 13, 2003 (gmt 0)



Thank you for such a speedy reply!

What if the host isn't using Apache?...

Brett_Tabke

12:03 pm on Jan 13, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



Sorry - I don't know other servers. I imagine there must be something similar built in. If not, you'll have to script something.

tomsk

12:23 pm on Jan 13, 2003 (gmt 0)



you'll have to script something.

Gulp. Thanks!