Google Page Rank
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   SEO Chat ForumsGoogleGoogle Page Rank

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread SEO Chat Forums Sponsor:
  #1  
Old June 2nd, 2008, 09:36 AM
jraymond's Avatar
jraymond jraymond is offline
Contributing User
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Jun 2007
Location: Atlanta, GA
Posts: 144 jraymond User rank is Corporal (100 - 500 Reputation Level)jraymond User rank is Corporal (100 - 500 Reputation Level)jraymond User rank is Corporal (100 - 500 Reputation Level)jraymond User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 16 h 14 m 8 sec
Reputation Power: 3
Send a message via Skype to jraymond
Index Page PR different than homepage

I understand what everyone says about PR being useless, but when those above you look at it as a measure of success, it becomes important, so please humor/help me.

My problem is that in looking at the PR on my homepage this morning, it is a 3, but the /index page (essentially the same page) has a rank of 6 (which is where both have been for about a ear-plus now. How can I get google to recognize that these are one and the same page? All of the data is identical, so I am also worried that I will get penalized for duplicate content. Any suggestions?

Thanks

Reply With Quote
  #2  
Old June 2nd, 2008, 09:52 AM
ClickyB's Avatar
ClickyB ClickyB is offline
Scru u guys I'm goin home
SEO Chat Specialist (4000 - 4499 posts)
 
Join Date: Mar 2004
Location: Gloucester (South West UK).
Posts: 4,021 ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Months 1 Week 23 h 23 m 4 sec
Reputation Power: 54
Quote:
Originally Posted by jraymond
I understand what everyone says about PR being useless, but when those above you look at it as a measure of success, it becomes important, so please humor/help me.

My problem is that in looking at the PR on my homepage this morning, it is a 3, but the /index page (essentially the same page) has a rank of 6 (which is where both have been for about a ear-plus now. How can I get google to recognize that these are one and the same page? All of the data is identical, so I am also worried that I will get penalized for duplicate content. Any suggestions?

Thanks
If you could explain what you mean by "home page" (as opposed to index page) that would help...
Do you mean the domain root? If so - you can (301) redirect the "index.html" page to the domain root, to "consolidate" your PR.
(BTW - If you mean the site in your sig' I see a PR3 for the domain root and the index.html)

If you are on apache you can use this redirect:
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.html\ HTTP/
RewriteRule ^(.*)index\.html$ /$1 [R=301,L]
__________________
ClickyB
"The quality of the visitor is more important than the volume".. Egol 22nd Feb 2008
New to SEO? Start Here: SEO FAQ
Forum Rules & Posting Guidelines

Last edited by ClickyB : June 2nd, 2008 at 09:58 AM.

Reply With Quote
  #3  
Old June 2nd, 2008, 09:56 AM
jraymond's Avatar
jraymond jraymond is offline
Contributing User
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Jun 2007
Location: Atlanta, GA
Posts: 144 jraymond User rank is Corporal (100 - 500 Reputation Level)jraymond User rank is Corporal (100 - 500 Reputation Level)jraymond User rank is Corporal (100 - 500 Reputation Level)jraymond User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 16 h 14 m 8 sec
Reputation Power: 3
Send a message via Skype to jraymond
I would define homepage as what is typed in directly to get to my site. If you want to see the issue for yourself, click the first link in my signature. That is the homepage, but if you add "/index.cfm" to the end, it is the same page but the page rank is different.

Reply With Quote
  #4  
Old June 2nd, 2008, 10:04 AM
ClickyB's Avatar
ClickyB ClickyB is offline
Scru u guys I'm goin home
SEO Chat Specialist (4000 - 4499 posts)
 
Join Date: Mar 2004
Location: Gloucester (South West UK).
Posts: 4,021 ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level)ClickyB User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Months 1 Week 23 h 23 m 4 sec
Reputation Power: 54
Quote:
Originally Posted by jraymond
I would define homepage as what is typed in directly to get to my site. If you want to see the issue for yourself, click the first link in my signature. That is the homepage, but if you add "/index.cfm" to the end, it is the same page but the page rank is different.
Ahhh...
Now I see a PR3 for the domain root and PR6 for index.cfm!
Part of the problem is that you have many internal links aimed at "domain/index.cfm", it's always a good idea to just aim them at the domain root... However you can overcome it with the redirect (but should adjust for .cfm) try this:
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.cfm\ HTTP/
RewriteRule ^(.*)index\.cfm$ /$1 [R=301,L]
You can test it works after uploading by trying to access domain/index.cfm... you should be redirected to domain/

BTW... When I typed in domain/index.html I get a page which says "We are currently performing system wide maintenance..." and redirects (via meta-refresh) to the domain root!
The page has PR3 so I guess Google have indexed it. I don't fully understand why it's there but I would recommend 301 redirecting it to the domain root.

Last edited by ClickyB : June 2nd, 2008 at 10:12 AM.

Reply With Quote
Reply

Viewing: SEO Chat ForumsGoogleGoogle Page Rank > Index Page PR different than homepage


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

Request Your Free Technology Downloads!
 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

Request Your Free Technology Downloads!
 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

Request Your Free Technology Downloads!
 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

Request Your Free Technology Downloads!
 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT