SEO friendly redirect – Part2
24. April 2008 – 17:35When a site moves to another domain or renamed, can be called with the old files to the new one. permanent Redirect (301 Redirect) redirect. This type of transfer is recommended by Google. Of a temporary forwarding (302 Redirect) should be waRedirectnce this is not optimal indexed by the Google search engine and therefore not SEO friendly.
A 301 Redirect forwarding can be implemented in several ways:
1. as a simple command in the. htaccess
Forwarding http://www.meinealtedomain.de / index.html http://www.meineneuedomain.de/index.html.
In the. Htaccess in the directory http://www.meinealtedomain.de/ will apply to the following:
Redirect permanent /index.html http://www.meineneuedomain.de/index.html
2. with the function header() in PHP
the file http://www.meinealtedomain.de / index.html contains the following:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.meineneuedomain.de/index.html");
header("Connection: close");
?>
3. With mod_rewrite in the. htaccess
if http://www.meinealtedomain.de / index.html http://www.meineneuedomain.de / index.html and http moves://www.meinealtedomain.de / start.html to http://www.meineneuedomain.de/start.html, you can with the following rule in the. htaccess forward:
RewriteEngine On
RewriteRule ^(.*)\.html$ http://www.meineneuedomain.de/$1.html [R=301,L]
These articles might well be:
- SEO friendly redirection with. Htaccess – Part1
- Tools and links for search engine optimization
- Suchmaschinenoptimierung (SEO) improved Flash indexing
Print





3 Responses to “SEO friendly redirect – Part2”
The method with the htaccess is the best, I have found. Above all, the page is accessed but not forwarded directly. at the PHP version is even called the old site yet, the delayed everything a little bit.
By Seodeluxe on Oct 24, 2008
how long does it take to actually google the deal has been checked and will be pushed back for it in google ?
By cccp4live on Apr 29, 2009
a good article about it is under: http://www.suchmaschinenland.de/tipps/index.php/umzug-einer-domain/
By admin on May 11, 2009