View Single Post
Old 2005-06-23, 02:13 PM   #8
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
sorry, by the time I read and posted, a few people put responses in.

Results in 302
Code:
Redirect / http://www.domain.com/
Results in 302
Code:
<?php
  header("Location: http://newsite.com/");
?>
Results in 302
Code:
ErrorDocument 404 http://newsite.com
Results in 301
Code:
RewriteEngine on
RewriteRule .* http://domain.com/ [R=301,L]
h20neil's suggestion of parking a domain on another, or overlaying, will also work. The problem there is that google could see both domains serving the same content and knock one out for the dupe page penalty.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote