iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Google Discussion Forum Google Discussion forum is for topics specifically related to Google. There is a subforum dedicated to AdSense/AdWords subjects.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-14-2005, 10:27 PM
WebProWorld New Member
 
Join Date: Apr 2005
Posts: 16
seachgeek RepRank 0
Default Why Google (again) behaves like this?

Hi,
A year back i posted in this forum about Google showing 2 different PR for my website. It was as follows:

http://wwww.lavacards.com PR5
lavacards.com PR2

Few of the WebPro Members suggested me that Google sees 2 diff. URL's so this happens. They suggested me a 301 redirect through .htaccess

and my problem was solved. Then the second URL was redirected to the first one with "http://"

BUT,
Again after the Jagger update... the above site is showing 2 diff. URL's with 2 diff PR's. Thus my sites unique visits had also gone down (as it happened a year ago.)

Here is the .htaccess file i've uploaded:-

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

Please let me know why Google (again) behaves like this??

Note: My other site 123lovecards.com dosent have 301 redirect.. but still shows PR4 for both type of URL's.

Reg,
Salil
Reply With Quote
  #2 (permalink)  
Old 11-15-2005, 01:43 AM
WebProWorld MVP
WebProWorld MVP
 
Join Date: Jul 2004
Location: Omaha
Posts: 2,714
brian.mark RepRank 3brian.mark RepRank 3
Default How???

How are you getting http://lavacards.com/ to show up? I automatically get redirected to http://www.lavacards.com/ and see the PR for that page.

Brian.
__________________
ToolBarn.com, an Internet Retailer Top 500 and Inc. 500 Company | Tool Parts | Pet Supplies
Reply With Quote
  #3 (permalink)  
Old 11-15-2005, 08:51 AM
WebProWorld New Member
 
Join Date: Apr 2005
Posts: 16
seachgeek RepRank 0
Default Re: How???

Quote:
Originally Posted by brian.mark
How are you getting http://lavacards.com/ to show up? I automatically get redirected to http://www.lavacards.com/ and see the PR for that page.

Brian.
You R Correct, But when you have the PR check both URL's show different PR.

Is my 301 Redirect working correctly for G?
Reply With Quote
  #4 (permalink)  
Old 11-15-2005, 09:03 AM
WebProWorld Veteran
 
Join Date: Oct 2005
Posts: 528
aaron2005 RepRank 0
Default

you are fine, if you have more people backlinking to www and less to the non "www" your pr will be more for the "www".

stop blaming google for everything...
__________________
SEO Blog
Reply With Quote
  #5 (permalink)  
Old 11-15-2005, 09:14 AM
WebProWorld Member
 
Join Date: Aug 2005
Posts: 86
johnyfav RepRank 0
Default

Although I agree slightly aaron - I feel that tone is difficult to portray on a forum and that may sound a bit harsh.....

Yeah your redirect is working as stated.

I would say seachgeek is using something other than the toolbar to check PR?

Remember google will probably have a cache of your site without the www on it's servers or it fact it still rank lavacards.com as a PR of 2 as it saw them both as seperate domains in the first place?

Does that make sense?
__________________
Favourite Towers
Reply With Quote
  #6 (permalink)  
Old 11-15-2005, 11:59 AM
WebProWorld MVP
WebProWorld MVP
 
Join Date: Jul 2004
Location: Omaha
Posts: 2,714
brian.mark RepRank 3brian.mark RepRank 3
Default Usually has taken...

It has usually taken them 3 - 6 months to get it totally straightened out for us when we added in 301's, and some of those old domains (been 301's for over 2 years now) are still in the supplemental results. It's nothing to get excited over. Most of your PR2 has been passed already, but if you specifically query a page they can't see they give you a result based on their old data.

Brian.
__________________
ToolBarn.com, an Internet Retailer Top 500 and Inc. 500 Company | Tool Parts | Pet Supplies
Reply With Quote
  #7 (permalink)  
Old 11-18-2005, 12:58 PM
WebProWorld New Member
 
Join Date: Apr 2005
Posts: 16
seachgeek RepRank 0
Default thnx brian. but can u plz help me out of this!

Hi,
though my 301 redirect seems working well.. plz look at the following 2 url's when u type in browser:

lavacards.com/sitemap.htm (here u will not shown the page) why?

http://lavacards.com/sitemap.htm (here also u will not shown the page) why?

ONLY if you type www.lavacards.com/sitemap.htm THEN AND THEN ONLY u get re-directed to http://www.lavacards.com/sitemap.htm

Can u explain me this problem.

thnx.
Reply With Quote
  #8 (permalink)  
Old 11-18-2005, 01:32 PM
WebProWorld MVP
WebProWorld MVP
 
Join Date: Jul 2004
Location: Omaha
Posts: 2,714
brian.mark RepRank 3brian.mark RepRank 3
Default Oops...

This isn't working either: http://lavacards.com/birthday/birthd..._greetings.htm

It appears to be dropping the / after the .com. It appears you need to escape the / in the rewrite rule. Give that a try (add a \ before the /, as in the following):

Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^lavacards\.com [NC]
RewriteRule ^(.*)$ http://www.lavacards.com\/$1 [L,R=301]
I haven't seen that needed before, but then again who knows. mod_rewrite seems to work differently on some machines.

Brian.
__________________
ToolBarn.com, an Internet Retailer Top 500 and Inc. 500 Company | Tool Parts | Pet Supplies
Reply With Quote
  #9 (permalink)  
Old 11-18-2005, 01:53 PM
WebProWorld New Member
 
Join Date: Apr 2005
Posts: 16
seachgeek RepRank 0
Default Re: Oops...

Quote:
Originally Posted by brian.mark
This isn't working either: http://lavacards.com/birthday/birthd..._greetings.htm

It appears to be dropping the / after the .com. It appears you need to escape the / in the rewrite rule. Give that a try (add a \ before the /, as in the following):

Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^lavacards\.com [NC]
RewriteRule ^(.*)$ http://www.lavacards.com\/$1 [L,R=301]
I haven't seen that needed before, but then again who knows. mod_rewrite seems to work differently on some machines.

Brian.

Brian. The above re-direct is not working. giving same error
Reply With Quote
  #10 (permalink)  
Old 11-18-2005, 02:01 PM
WebProWorld New Member
 
Join Date: Apr 2005
Posts: 16
seachgeek RepRank 0
Default Now i've dropped all code frm .htaccess,

Now i've dropped all code frm .htaccess, i've dis-continued using .htaccess file. BUT, still my pages get re-directed as the lavacards.com to http://www.lavacards.com

strange :)
Reply With Quote
Reply

  WebProWorld > Search Engines > Google Discussion 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



All times are GMT -4. The time now is 11:41 AM.



Search Engine Optimization by vBSEO 3.3.0