Hi webmasters, just relaunched an old site and now is showing zero clicks, I suspect there is a technical problem but have no idea on why or how to fix it. I create and use my own CMS and just relaunched this site with my latest CMS on beta, but no clicks.
Before:- Old CMS using a database to create all the HTML pages.
- The Adsense code was inserted on the templates.
- The result was a fast and practical website.
- Old style web, http://www.widgets.com and http://widgets.com
Now:- New CMS creating pages on the fly from the same database.
- Real html files doesn't exist, this is a pure dynamic web by now. The CMS CAN create html files as a "cache" function that works the same as my previous cms, but the function has been -off- for a month and a half as I'm still testing the cms and the on the fly functions along with other stuff.
- All the pages are ok, not a single error, clean and valid HTML.
- The main difference between this one and my old cms: redirect and rewrite.
I created an .htaccess file to redirect all the old urls to the new ones. Also, the new model of my CMS works around
http://widgets.com instead of
http://www.widgets.com. This means, no matter what www.widgets.com/pages you visit, youll end up on http:// widgets.com/pages.
That's all, but since I switched the site to this CMS, Adsense reports 0 clicks. The domain is already on the -allowed sites- list, always been there (widgets.com). The site didn't have thousands of clics but since the change: none, zero, not even one click. I think that's the main problem. I tried to modify the allowed sites list on the respective Adsense panel, but tried the whole url: [
www....] widgets.... and also http:// widgets..... instead of just widgets.com but it won't let me.
The htaccess code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule (.*) http://%1/$1 [R=301,L]
I didn't post this on the htaccess area as the site works fine, no errors and the headers are ok, is just Adsense that reports zero clics. I don't know if the on-the-fly code insertion (adsense) could be affected, the ads show just fine, no errors.
Any ideas will be appreciated. Thanks in advance.