iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Search Engine Optimization Forum SEO is much easier with help from peers and experts! The WebProWorld SEO forum is for the discussion and exploration of various search engine optimization topics. Any non (engine) specific SEO or SEM topics should go here.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-10-2008, 11:45 AM
WebProWorld New Member
 
Join Date: Jan 2008
Posts: 5
JohnCoker RepRank 0
Default 301 Redirect question

To be blunt, I have no clue about the below error I'm getting when I check my website using an online tool. I understand a 301 can be used to take people from one page to another but I thought the below pages were the same? So how can I fix the below error and where do I put the redirect. BTW I host on GoDaddy


Permanent Redirect Not Found
Search engines may think Home Inspection services for Virginia Beach Chesapeake Norfolk Suffolk and familyhomeinspection.com are two different sites.

You should set up a permanent redirect (technically called a "301 redirect") between these sites. Once you do that, you will get full search engine credit for your work on these sites. For example, Home Inspection services for Virginia Beach Chesapeake Norfolk Suffolk seems to have 251 inbound links whereas familyhomeinspection.com has 252 inbound links. By correctly configuring a permanent 301 redirect, the search rankings might improve as all inbound links are correctly counted for the website.
Reply With Quote
  #2 (permalink)  
Old 02-10-2008, 11:53 AM
bobitza's Avatar
WebProWorld Veteran
 
Join Date: Jan 2004
Location: Canada
Posts: 303
bobitza RepRank 2bobitza RepRank 2
Default Re: 301 Redirect question

I think the error refers to the fact that you have incoming links for the http:// site and also for the http:// www site.

Search the forum for 301 redirect, there are a few posts that explain how to do it.
__________________
Open Web Directory
Reply With Quote
  #3 (permalink)  
Old 02-10-2008, 11:53 AM
kgun's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: May 2005
Location: Norway
Posts: 5,723
kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10
Default Re: 301 Redirect question

Google:

".htaccess 301 redirect"

Alternatively:

".htaccess 301 redirect" site:www.webproworld.com

Note:
Googling with the quotes "KW's" is an exact searh query and give a more restricte set of SERP's.
Reply With Quote
  #4 (permalink)  
Old 02-10-2008, 01:01 PM
WebProWorld New Member
 
Join Date: Jan 2008
Posts: 5
JohnCoker RepRank 0
Default Re: 301 Redirect question

Guys, I've tried following instructions but I'm just missing something. I made a .htaccess file in note pad, and saved it to the root directory. I still get the same error. Is this code right?


RewriteEngine On
rewritecond %{http_host} !^familyhomeinspection.com
rewriteRule ^(.*) http://www.familyhomeinspection.com/$1 [R=301,L]
Reply With Quote
  #5 (permalink)  
Old 02-10-2008, 01:22 PM
kgun's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: May 2005
Location: Norway
Posts: 5,723
kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10
Default Re: 301 Redirect question

Should it be:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]

It depends on your intetions.

Hint: Read the article in the below link carefully:

Do you see .htaccess in remote mode (the server version)?

In addition study the 301 Redirect Examples:
Redirect Visitors To a New Page or Site - HTML Tips and Tricks

for single pages etc.

Note the final notes there:

"I can't stress enough how important it is to test your server's response headers any time you make a change to your .htaccess file! If you use Firefox the LiveHTTPHeaders extensions is the best I've ever found. That will tell if you're sending a 301 (permanent redirect), 302 (temporary redirect, not what you want probably!) or 200 which means page found, as well as a ton of other info".

MunkyOnline is a WPW member. The third hit for the above KW's is:
.htaccess 301 Redirect for IP Ranges - Munky Online

Note: For security add input filtering to the PHP code!

Last edited by kgun; 02-10-2008 at 01:34 PM.
Reply With Quote
  #6 (permalink)  
Old 02-12-2008, 02:54 AM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: 301 Redirect question

On you sure your on Apache?
Reply With Quote
  #7 (permalink)  
Old 02-12-2008, 03:00 AM
WebProWorld New Member
 
Join Date: Jan 2008
Posts: 5
JohnCoker RepRank 0
Default Re: 301 Redirect question

No clue, I am hosted on GoDaddy, how do I find out about Apache?
Reply With Quote
  #8 (permalink)  
Old 02-12-2008, 06:40 AM
WebProWorld Veteran
 
Join Date: Aug 2003
Location: Cornwall, UK
Posts: 972
speed RepRank 1
Default Re: 301 Redirect question

The site in the first post is hosted on a Microsoft IIS/6.0 server so unless the host has additional software installed .htaccess and rewriting won't work.
Reply With Quote
  #9 (permalink)  
Old 02-12-2008, 09:52 AM
kgun's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: May 2005
Location: Norway
Posts: 5,723
kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10
Default Re: 301 Redirect question

Then look here:

.htaccess file type for .asp

Generally:

KW search:

"iis rewrite"

"iis redirect"
Reply With Quote
  #10 (permalink)  
Old 02-12-2008, 10:35 AM
bobitza's Avatar
WebProWorld Veteran
 
Join Date: Jan 2004
Location: Canada
Posts: 303
bobitza RepRank 2bobitza RepRank 2
Default Re: 301 Redirect question

Quote:
Originally Posted by JohnCoker View Post
No clue, I am hosted on GoDaddy, how do I find out about Apache?
Server Type: Microsoft-IIS/6.0

check here
__________________
Open Web Directory
Reply With Quote
  #11 (permalink)  
Old 03-29-2008, 09:31 AM
shivi's Avatar
WebProWorld New Member
 
Join Date: Mar 2008
Location: delhi
Posts: 5
shivi RepRank 0
Default Request for seo notes and free link softwear

Hello ,
I am new in this field . and I have no more knowledge about this field . so anybody can i help me . I need seo notes and free link add softwear .
I need some softwear and auto sites . so if may be possible ,"please help me .
I am waiting for your positive reply . please mail me soon .

Thanks
vikesh
(contact id)
suyesh.linkbuilder@gmail.com
Reply With Quote
Reply

  WebProWorld > Search Engines > Search Engine Optimization Forum

Thread Tools
Display Modes

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 On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Another Redirect Question flanok Google Discussion Forum 1 12-14-2005 07:23 PM
301 Redirect Question MtraX Search Engine Optimization Forum 11 09-28-2005 08:27 AM
Another 301 redirect question paulevison Search Engine Optimization Forum 0 09-23-2005 07:23 AM
another redirect question markhallgate Search Engine Optimization Forum 5 07-06-2005 11:57 AM
Redirect Question iamrussell Google Discussion Forum 3 06-01-2004 05:04 PM


All times are GMT -4. The time now is 11:23 PM.



Search Engine Optimization by vBSEO 3.3.0