Forum Moderators: martinibuster
I had some URL channels setup, all with the "www" prefix (www.example.com). I was seeing that the sum of my URL channel impressions did not add up to the total impressions reported.
As a test I added more URL channels without the "www" prefix (example.com). And I found out that the counts were off between www and non-www. Go figure.
In .htaccess, on an Apache server, this works for me:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteCond %{HTTP_HOST}!^$
RewriteRule ^(.*) http://www.example.com/$3 [L,R=301]