EMAIL REMOVED schreef:
> HI,
>
> Today i have noticed a strange thing on adsense.
> i have a domain http://www.worldmostbeautifulbeaches.com the site is
> still in the construction phase. I have implemented adsense on the
> site.
> what i have noticed is
> http://www.worldmostbeautifulbeaches...enia-index.htm
> when i used www in URl of the site adsense is showing the relavent ads
> (i.e related to beach, resort, australia) but when i remove www from
> URL http://worldmostbeautifulbeaches.com/Ocenia-index.htm it is showing
> ads related to Human resource, Jobs, Consultancy.. .
>
> I want to ask why this is happening.
>
> thanks
> rgds
> raj
> http://www.greatdrugstoreonline.com
Because Google thinks both versions are different and didn't yet
visited the non-www version. Now the bot has visited it normally, look
in your logs.
It's best to redirect the 2 versions to 1 with mod_rewrite in your
..htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.worldmostbeautifulbeaches\.com$
RewriteRule (.*) http://www.worldmostbeautifulbeaches.com/$1 [R=301,L]
(Thank John for the code)