Forum Moderators: open
It seems i can't use an htaccess permanant redirect, so i've put a php redirct:
header( 'refresh: 0; url=http://www.mysite.com' );
Won't google consider it as cheating, abusing and doom my site for the rest of the century?
Just to know. Since this particular page will redirect to my frontpage, I don't want to have any penality.
Thanks in advance,
Brakkar
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.phoo.com");
exit();
?>
301 error code tells googlebot what you want to say (site doesn't exist anymore), then sends googlebot along to your new one, works almost immediatly for people browsing as well