feha
Sun 4 February 2007, 11:58 am GMT +0100
The vision.to has now a PR7 and we want to exchange links with other PR7 sites (WebDevelopment related).
(To advertise at vision.to please PM)
Nikolas
Sun 4 February 2007, 01:04 pm GMT +0100
Your site has pagerank 0 in most of the datacenters, and 6 in one....
http://livepr.raketforskning.com/?u=http%3A%2F%2Fvision.to%2Folaf
Sun 4 February 2007, 01:11 pm GMT +0100
thats true for the domain, but
www.vision.to gives a PR7 (strange enough, my website has a PR for both)
Nikolas
Sun 4 February 2007, 01:20 pm GMT +0100
That's really strange
feha
Sun 4 February 2007, 05:18 pm GMT +0100
:-)
There is nothing strange ...
vision.to and
www.vision.to is not same thing
ventureskills
Sun 4 February 2007, 06:33 pm GMT +0100
feha it's strange because some of the datacentres are returning 0PR I checked several sites all are showing datacentres which show 0PR while others the PR you expect, this either means updates are still happening (which I thought they had stopped) or that something is going on in the datacentres. You will be pleased to know it has nothing to do with your site!
feha
Sun 4 February 2007, 06:51 pm GMT +0100
The datacenters are still under update ...
feha
Sun 4 February 2007, 06:56 pm GMT +0100
olaf
Sun 4 February 2007, 07:07 pm GMT +0100
yes and check your site ?
http://livepr.raketforskning.com/?u=http%3A%2F%2Fwww.vision.tothe view values of 6 are from before the update last year...
Nikolas
Sun 4 February 2007, 07:12 pm GMT +0100
Yeah the update is still running.
You can check webdigity too.
Feha : I know that google was dealing www and non www versions seperate but I thought that changed recently.
olaf
Sun 4 February 2007, 08:12 pm GMT +0100
Feha : I know that google was dealing www and non www versions seperate but I thought that changed recently.
I remember they introduced this feature via the webmaster central, this way you can enter which version has to be recognized by Google
JACOBKELL
Sun 18 February 2007, 04:48 pm GMT +0100
Well best way to solve that problem is using 301 redirection.For example,fortunecity.com has pr0 yet
www.fortunecity.net pr7
GiorgosK
Fri 13 April 2007, 01:10 am GMT +0200
@Olaf just the webmasters option does not suffice (I think)
I usually emply htaccess to help google out by redirecting the www to the no-www address
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^(.*)$
http://domain.com/$1 [R=301,L]
since I believe the no-www manifesto
http://no-www.org/but you could do the opposite which I believe is
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$
http://www.domain.com/$1 [R=301,L]
olaf
Fri 13 April 2007, 08:24 am GMT +0200
@Olaf just the webmasters option does not suffice (I think)
I usually emply htaccess to help google out by redirecting the www to the no-www address
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^(.*)$
http://domain.com/$1 [R=301,L]
since I believe the no-www manifesto
http://no-www.org/but you could do the opposite which I believe is
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$
http://www.domain.com/$1 [R=301,L]
Thanks Giorgos, I use the same rule in most of my websites, but the option via Google webmaster tools is not bad at all...