Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a website on www.example.com and use Google Analytics. This website has lots of subdomains which I want to track using Google Analytics. It also has some static subdomains like static.example.com which serve all static content.

Google Analytics is issuing cookies on all subdomains but I don't want the static content traffic to be carrying the weight the GA cookies.

Any ideia on how to exclude the static subdomains from being tracked by Google Analytics?

Thank you.

share|improve this question

1 Answer

You can use this line of code

pageTracker._setDomainName("www.example.com")

This will issue cookies for the www.example.com and the cookies won't be leaked to the static subdomain.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.