Quote:
Originally Posted by Leecher24
Hallo
I have at the moment the Domain xxxyyyz.BiZ with Zoints seo. And next week I will change my Board to the Domain xxxyyyz.to
What I must put in the .htacces that all links from the .biz domain (otherwebspace or redirection to .to domain).
That all links that are listed in google redirect to right thread.
Greetz L24
|
Rename old forum directory and create a new one with the same name (forum_old, forum)
Create a file named "redirector.php" in the new directory with the following code:
Code:
<?
$url=$_SERVER[’REQUEST_URI’]);
$old_forum_url="http://www.oldurl.com/forums/";
$new_forum_url="http://www.newurl.com/forums/";
$url=str_replace ( $old_forum_url, $new_forum_url, $url );
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: $url" );
?>
Create a .htaccess file in the new directory with this code:
Code:
ErrorDocument 404 redirector.php
Regards!
Quote:
Originally Posted by Jason Black
Does zoints disrupt google and yahoo spiders?
|
Not at all!