Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 01-05-2012, 11:17 PM   #1
Active Warrior
 
Join Date: Dec 2010
Posts: 61
Thanks: 0
Thanked 3 Times in 3 Posts
Arrow Question about SEO on redirect domains

Hello Warriors,
I have a difficult question (for me at least).

I am currently making a blog that is reviewing another website's services.
Example: website-review.com

I have also purchased .ORG, .NET, and .INFO of the actual domain, and I plan on redirecting these to my review site.

Is there anything I can do for SEO on these redirect websites?
Also, is it a 301 redirect what I'd want to do?

Thanks a lot guys!

EDIT: Should I do SEO on my redirect domains?
ryder553 is offline   Reply With Quote
Old 01-05-2012, 11:37 PM   #2
HyperActive Warrior
 
Join Date: Jun 2011
Location: UK
Posts: 219
Thanks: 0
Thanked 11 Times in 10 Posts
Default Re: Question about SEO on redirect domains

Quote:
Originally Posted by ryder553 View Post
Hello Warriors,
I have a difficult question (for me at least).

I am currently making a blog that is reviewing another website's services.
Example: website-review.com

I have also purchased .ORG, .NET, and .INFO of the actual domain, and I plan on redirecting these to my review site.

Is there anything I can do for SEO on these redirect websites?
Also, is it a 301 redirect what I'd want to do?

Thanks a lot guys!

Used these coding for 301 redirect..I hopeful its working for your websites.

ColdFusion Redirect

<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">

PHP Redirect

<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>

ASP Redirect

<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>

ASP .NET Redirect

<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>

JSP (Java) Redirect

<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>

CGI PERL Redirect

$q = new CGI;
print $q->redirect("http://www.new-url.com/");

Ruby on Rails Redirect

def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-url.com/"
end

Redirect Old domain to New domain (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

Please REPLACE www.newdomain.com in the above code with your actual domain name.

In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.


Redirect to www (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.domain.com
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

Please REPLACE domain.com and www.newdomain.com with your actual domain name.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.

Tom Albas is offline   Reply With Quote
Old 01-06-2012, 12:24 AM   #3
Active Warrior
 
Join Date: Dec 2010
Posts: 61
Thanks: 0
Thanked 3 Times in 3 Posts
Default Re: Question about SEO on redirect domains

So Tom, should I only use one method?
ryder553 is offline   Reply With Quote
Old 01-06-2012, 12:37 AM   #4
Advanced Warrior
 
Join Date: Sep 2010
Posts: 502
Thanks: 1
Thanked 18 Times in 17 Posts
Default Re: Question about SEO on redirect domains

definately if you are using php in your website then you need to use php redirect.

Custom Plastic USB Drive @ USB Promos | | BestChicago SEO Company | Web Design for Mobile Devices
samual james is offline   Reply With Quote
Old 01-06-2012, 12:45 AM   #5
Advanced Warrior
 
StoneWilson's Avatar
 
Join Date: Mar 2011
Posts: 693
Thanks: 69
Thanked 30 Times in 30 Posts
Default Re: Question about SEO on redirect domains

301 redirect would be a good choice. If you have enough time and resources to promote those redirect websites first, you can generate traffic and link juice from them. If they are all new and you didn't promote before, just a 301 will be fine.

StoneWilson is offline   Reply With Quote
Old 01-06-2012, 01:45 AM   #6
HyperActive Warrior
 
Join Date: Jun 2011
Location: UK
Posts: 219
Thanks: 0
Thanked 11 Times in 10 Posts
Default Re: Question about SEO on redirect domains

Quote:
Originally Posted by ryder553 View Post
So Tom, should I only use one method?
Yes, You use any one of them

Tom Albas is offline   Reply With Quote
Old 01-06-2012, 05:29 AM   #7
Advanced Warrior
 
Join Date: Jun 2011
Posts: 592
Thanks: 1
Thanked 29 Times in 26 Posts
Default Re: Question about SEO on redirect domains

You ideas doesn't sound great to me...
First thing, your main domain will not get instant boost with those redirected domains. You have to optimize them first. And, managing so many websites i really difficult.

230% more traffic with 12+ Keyword research tools
C Rebecca is offline   Reply With Quote
Old 01-07-2012, 11:28 AM   #8
Active Warrior
 
Join Date: Dec 2010
Posts: 61
Thanks: 0
Thanked 3 Times in 3 Posts
Default Re: Question about SEO on redirect domains

So should I do SEO on my redirect domains?
ryder553 is offline   Reply With Quote
Old 01-09-2012, 11:46 AM   #9
Active Warrior
 
Join Date: Dec 2010
Posts: 61
Thanks: 0
Thanked 3 Times in 3 Posts
Default Re: Question about SEO on redirect domains

Bump this post up!
ryder553 is offline   Reply With Quote
Old 01-09-2012, 02:45 PM   #10
Steve Jones, Domain Pro
War Room Member
 
Domainate's Avatar
 
Join Date: May 2010
Location: San Diego
Posts: 193
Thanks: 11
Thanked 39 Times in 32 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via ICQ to Domainate Send a message via Skype™ to Domainate
Default Re: Question about SEO on redirect domains

I'm not sure it'd be worthwhile spending any SEO efforts on them before redirecting them instead of spending those same SEO efforts on your main site. I say just do the 301 redirects.

Want to learn how to earn a living with domains without the years of trial and error?
------> Attend our Domain Boot Camp live 2-day workshop! <------
Join the Doma.in Newsletter for special domain sales and free domain training!
>> Built your opt-in list? Deliver more through Listcast or clean it to please your autoresponder with ELC
Domainate is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum

Tags
domains, question, redirect, seo

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 06:07 PM.