Different Rankings

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Different Rankings

Post by juergen »

:shock: What does this mean:

http : // domain ranks 3 in google
http : // www . domain ranks 4 in google

:?

Both directed same, no difference at all... ! Would that mean that links to http : //www. domain are treated different to http : //domain ?

Both have same DNS A Entries.

this needs extra studies on google university :D Any idea ?

Juergen
User avatar
Heiko H.
Posts: 868
Joined: Thu 27. Oct 2005, 11:41
Location: Dresden
Contact:

Post by Heiko H. »

Hi Juergen,

just an idea.

"www.domain.tdl" is a subdomain of the domain "domain.tdl". //fact
May be there is anywhere a link to "domain.tdl" and somewhere else a link to "www.domain.tdl".
Google recognizes this as two different sites and has subscripted your side twice.
Do not ask me why the results are different.

Try
site:domain.tdl

as google search string and you will see which pages are indexed.
may be you can find your sites twice once with leading "www." and once without. //schulterzuck...


Heiko.
ArtiAge
Posts: 3
Joined: Fri 1. Sep 2006, 01:15

Post by ArtiAge »

Hi Jürgen,

vielleicht hilft dies:

RewriteEngine on

# Verhindert bei Google sog. DoubleContent
# Google erkennt das es zwei Domains mit dem identischen
# Inhalt gibt und bewertet diese Seiten etwas schlechter
# 2. Zeile sagt welche Domain auf welche geleitet werden soll
# In diesem Fall wird "domain.tld" auf "www.domain.tld"
# umgeleitet.
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.domain\.tld$
RewriteRule ^(.*)$ http://www.domain.tld/$1 [L,R=301]


Ref.: Apache URL Rewriting Guide: Canonical Hostnames

Viel Glück,
Arti
Peekay
Posts: 286
Joined: Sun 25. Jul 2004, 23:24
Location: UK

Post by Peekay »

I don't read German, but if the above means 'add an .htaccess file to your site root directory to redirect requests for http://example.com to http://www.example.com then I agree! :)

I believe it is important for SEO not to have both 'http' and 'www' access to a site.

DF6IH's ranking report seems to bear that out.
User avatar
Jensensen
Posts: 3000
Joined: Tue 17. Oct 2006, 21:11
Location: auf der mlauer

Post by Jensensen »

hi folks,

for that case (http://www.server is the same as http://server)
google Webmaster Tools lets you chose the 'preferred domain'

--> Diagnostic --> Preferred domain

set either to with 'www' or not

greetz
{so_much} | Knick-Knack. | GitHub
Umlaute im URL sind meistens immer Kacke.
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

so what ?

prefered domain ? I have an extra Entry for "www" in the nameserver ...hihi should try whats happening if I kick this out :D
Peekay
Posts: 286
Joined: Sun 25. Jul 2004, 23:24
Location: UK

Post by Peekay »

You must have 'www' in DNS, otherwise nobody will find 'www.example.com', but for best results in Google, you should use .htaccess to block (redirect) 'http//example.com'.
Post Reply