google PR with and without www

Please support our Search Engine Optimization advertiser: Search Engine Optimization Services
Reply

Join Date: Aug 2004
Posts: 5
Reputation: benevolent001 is an unknown quantity at this point 
Solved Threads: 0
benevolent001 benevolent001 is offline Offline
Newbie Poster

google PR with and without www

 
0
  #1
Oct 24th, 2004
hi,just today only i noticed this,after the PR update recently all the 20 pages of our website got PR4,earlier only our homepage www.mydomain.com/index.htm was having PR 4
but after this update all have got 4
any way my question is this ,i found a big problem for our website
i found that when i enter www.mydomain.com it shows PR4 and when just mydomain.com/ it gives PR3.
Whats this
i thinks google cosiders these as different urls and indexing to give diff PR
i wanted to know how much PR you think we are loosin due to this considering the fact if the google had considered both URLs same
main thing is that how can i find those links on the web which are back links to both these urls and correct the problem so that we may gain some PR as sice 3 months we have just 4 and we want to improve it

Your suggestions and comments are anticipated
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 16
Reputation: JAMMAN is an unknown quantity at this point 
Solved Threads: 0
JAMMAN's Avatar
JAMMAN JAMMAN is offline Offline
Newbie Poster

Re: google PR with and without www

 
0
  #2
Oct 30th, 2004
What method are you using to determine page rank?
I've noticed a higher page rank from incoming links depending on how the links are structured.. www is actually a sub domain of mydomain.com (example links only). If the incoming links are written www then the PR will be higher when you use www. If they use simply mydomain.com to link to you the PR sould be higher without the www.
I am here. Sig will follow all applicable laws. The views expressed are those of my own.
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 2
Reputation: jfister is an unknown quantity at this point 
Solved Threads: 0
jfister jfister is offline Offline
Newbie Poster

Re: google PR with and without www

 
0
  #3
Nov 23rd, 2004
Originally Posted by benevolent001
hi,just today only i noticed this,after the PR update recently all the 20 pages of our website got PR4,earlier only our homepage www.mydomain.com/index.htm was having PR 4
but after this update all have got 4
any way my question is this ,i found a big problem for our website
i found that when i enter www.mydomain.com it shows PR4 and when just mydomain.com/ it gives PR3.
Whats this
i thinks google cosiders these as different urls and indexing to give diff PR
i wanted to know how much PR you think we are loosin due to this considering the fact if the google had considered both URLs same
main thing is that how can i find those links on the web which are back links to both these urls and correct the problem so that we may gain some PR as sice 3 months we have just 4 and we want to improve it

Your suggestions and comments are anticipated

I recommend consolidating all links to one or the other. For my sites, I always use the "www." in front of the domain name. Then I make sure that most of the links on the site are absolute references containing the "www." prefix.
"Do not spoil what you have by desiring what you have not; but remember that what you now have was once among the things only hoped for." - Epicurus
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,027
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 126
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is offline Offline
The Queen of DaniWeb

Re: google PR with and without www

 
0
  #4
Nov 27th, 2004
Same here. I always use the www and encourage anyone who links to DaniWeb to do the same.

www.daniweb.com google backlinks => http://www.google.com/search?sourcei...Edaniweb%2Ecom
daniweb.com google backlinks => http://www.google.com/search?hl=en&l...%3Adaniweb.com
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 193
Reputation: Scribbller is an unknown quantity at this point 
Solved Threads: 2
Scribbller Scribbller is offline Offline
Insane Scribblling

Re: google PR with and without www

 
0
  #5
Nov 29th, 2004
301 non www traffic to the www side of things, better SEO longterm.
Why? You combine your page rank from two sites (domain.com and www.domain.com) into one, ultimatly will pass on more PR to your sub-pages, hence, better SEO.

301 redirect
if($_SERVER['HTTP_HOST']=='example.com') {
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/");
header("Connection: close");
}
Reply With Quote Quick reply to this message  
Join Date: Nov 2005
Posts: 26
Reputation: Webnauts is an unknown quantity at this point 
Solved Threads: 0
Webnauts's Avatar
Webnauts Webnauts is offline Offline
Light Poster

Re: google PR with and without www

 
0
  #6
Aug 1st, 2006
Reply With Quote Quick reply to this message  
Join Date: Jul 2006
Posts: 96
Reputation: pctec is an unknown quantity at this point 
Solved Threads: 0
pctec pctec is offline Offline
Junior Poster in Training

Re: google PR with and without www

 
0
  #7
Aug 3rd, 2006
I too always use the www... it was one of the first things I read about SEO
It's not a lot of help but it's a little...
http://www.pctec.ca/help/
Reply With Quote Quick reply to this message  
Join Date: May 2006
Posts: 1,422
Reputation: stymiee is on a distinguished road 
Solved Threads: 35
Moderator
stymiee's Avatar
stymiee stymiee is offline Offline
He's No Good To Me Dead

Re: google PR with and without www

 
0
  #8
Aug 4th, 2006
Google sees your website with the 'www' (http://www.example.com) as a different page the without (http://example.com). Pages that link to the page without the 'www' are hurting your pages with the 'www' as the PR is essentially being split between the two pages. Fortunately this is easy to fix. Use a 301 redirect to redirect Google, and everyone else, to the 'www' page from the non 'www' page. The code would look similar to this (mod_rewrite required):

Options +FollowSymlinks 
RewriteEngine On 
RewriteCond %{HTTP_HOST} !^(www\.|$) [NC] 
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
To go from the 'www' to non 'www' use this code:
Options +FollowSymlinks 
RewriteEngine On 
RewriteCond %{HTTP_HOST}//s%{HTTPS} ^www\.(.*)//((s)on|s.*)$ [NC] 
RewriteRule ^ http%3://%1%{REQUEST_URI} [L,R=301]
Last edited by stymiee; Aug 4th, 2006 at 10:22 am.
John Conde
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 37
Reputation: RiverKqj is an unknown quantity at this point 
Solved Threads: 0
RiverKqj's Avatar
RiverKqj RiverKqj is offline Offline
Light Poster

Re: google PR with and without www

 
0
  #9
Oct 4th, 2006
Hi guys im new here great site by the way , been reading alot of the posts around and have noticed alot of people talking about their sites going up and down in the PR's , this is because there are many bot's for google and on seperate servers, you can test your site in the link below, if you have the same pr all the way down then you've got a strong PR , if not then it will jump from PR to PR

Hope this helps some people...

http://www.seologs.com/pr-check/pagerank-dc.html

Regards Riverkqj
Last edited by cscgal; Oct 9th, 2006 at 2:08 pm. Reason: Semi off topic, no URLs permitted
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 7
Reputation: seo2k6 is an unknown quantity at this point 
Solved Threads: 0
seo2k6 seo2k6 is offline Offline
Newbie Poster

Re: google PR with and without www

 
0
  #10
Oct 9th, 2006
Originally Posted by benevolent001 View Post
hi,just today only i noticed this,after the PR update recently all the 20 pages of our website got PR4,earlier only our homepage www.mydomain.com/index.htm was having PR 4
but after this update all have got 4
any way my question is this ,i found a big problem for our website
i found that when i enter www.mydomain.com it shows PR4 and when just mydomain.com/ it gives PR3.
Whats this
i thinks google cosiders these as different urls and indexing to give diff PR
i wanted to know how much PR you think we are loosin due to this considering the fact if the google had considered both URLs same
main thing is that how can i find those links on the web which are back links to both these urls and correct the problem so that we may gain some PR as sice 3 months we have just 4 and we want to improve it

Your suggestions and comments are anticipated

Dear Friend,

The problem arose with you is called cononicalisation problem.
Whenver google crawlers found more than one instance for a domain name, they give a sort of panelty to the website.

The solution of the above problem is to setup 301 Permanent redirect for the different instances of the domain i.e. abc.com, www.abc.com/, www.abc.com/index.htm to a particular domain name like >> www.abc.com .

It will never ask you to lose your page rank and always remember to hyperlink the main domain only whenever putting links rather than using other instances.

Hope this will help you out.

Cheers,
SEO2K6
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Search Engine Optimization Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC