How can I have Google Analytics recognize when one of my domain aliases is being used? It seems that Analytics metrics are only being captured when the visitor uses the site's original domain: mysite.com.
I have 5 domain aliases that all point to example.com/index.html. I do this redirect by the following htaccess code:
rewritecond %{HTTP_HOST} ^(www\.)?alias1\.info$ [NC]
RewriteRule ^$ /index.html?north [R=301,QSA,L]
The site and the five domain aliases are all hosted in the same location. These are not sub domains.