I have a client that hosts with Yahoo small business. Their site stats are not working even though I've added the required code for php pages.
I'm using a rewrite that says basically if ../index is requested it loads the ../index.php page without the extension visible.
.htaccess file:
Code:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
When visiting the site if I add the .php extension the yahoo stats track the visit.
Google Analytics on this site works. AWSTATS work fine for another site using the same rewrite code.
Here's the yahoo stats code:
Any ideas or solutions?
Thanks in advance!!