301 redirect your main domain to the new main domain
do the same if you have sub-domains as well.
if you want to only redirect a certain page, use this code in your HTML:
Code:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.thenewwebsite.com");
if you want to move the entire website, place this code in your .htaccess file:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.thenewwebsite.com/$1 [R=301,L]
if you run Ruby on Rails, you can also do this:
Code:
def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.thenewwebsite.com/"
end
__________________
Please login or register to view this content. Registration is FREE
(HTML/PHP/MySQL/JavaScript/AJAX/SEO)
|