Quote:
Originally Posted by thesyndicate
Oki i do a 301 one from the main domain but how do you mean i do and redirect from the posts?
|
Redirect old pages to new pages with a simple 301 redirect
Code:
RewriteEngine On
Redirect 301 /oldpage.html http://www.mydomain.com/page2.htm
Redirect 301 /myfolder/oldpage.html http://www.mydomain.com/newfolder/newpage.htm
301 redirect using Apache Mod Rewrite
Code:
RewriteRule ^contact\.html$ http://www.mydomain.com/contact.php [R=301]
RewriteRule ^myoldpage1\.html$ http://www.mydomain.com/mynewpage.html [R=301,L]