how to 301 ?

nonai

BANNED
Joined
Oct 10, 2013
Messages
535
Reaction score
77
I want to 301 redirect an expired domain to my existing domain for the purpose of a boost in serps.
I am wondering, do I do this within godaddy (where I bought the expired domain) or do I need to host the domain somewhere and then do it through the host by uploading an htaccess file?
 
I don't know if there's any way through godaddy, don't think so. But I always host it and 301 via htaccess like you mentioned.
 
You can do it through godaddy. You don't need to host it anywhere.
 
Godaddy has 301 domain re-directer. Use it. No need to host your domain anywhere. Look in the domain management.
 
By expired domain, you mean you bought an expired domain right? I'm pretty sure any domain hoster has a redirect method.
 
OP you can do this with index.php as well

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.New-Website.com");
?>

or htaccess

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^yourdomain.com$ [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
 
Of course you do it through GoDaddy, it is so easy as 1,2,3...This video explains everything

 
Last edited by a moderator:
Pretty much summed it up perfectly.

But most domain registars let you redirect, although I don't use GoDaddy.

Yes, I use name.com and it has a function in domain management to do that, was not sure about godaddy. So, that's why I shared the alternative way. :)
 
He needs to host the domain to be able to do that. Godaddy domains can be 301'd unhosted.
OP you can do this with index.php as well



or htaccess
 
You can do it in GoDaddy. For those domain registrars that you can't do it on and if you don't want to pay for hosting just to do a 301, get an Amazon route 53 account and do it there.
 
Back
Top