Google Analytics ...关于跟踪子域名的相当简单的问题

时间:2010-07-04 11:43:52

标签: google-analytics subdomain

这几乎是一个问题,我只是想有人向我证实这一点! :)

Google Analytics已为子域sub.mysite.com生成了我的跟踪代码。跟踪代码的一行如下所示:

_gaq.push(['_setDomainName', '.mysite.com']);

我是否需要将.mysite.com更改为sub.mysite.com?跟踪代码页自动为这些案例生成指令,但它没有提及实际配置它。我的意思是,它是自动检测子域还是我很厚?

干杯!

杰克

1 个答案:

答案 0 :(得分:3)

_gaq.push(['_setDomainName', '.mysite.com']);(注意.之前的mysite.com)导致跟踪发生在mysite.com的所有子域上。请参阅the documentation for _setDomainName in the Google Analytics Tracker API

如果您只想为sub.mysite.com启用跟踪,则可以改为使用:

_gaq.push(['_setDomainName', 'sub.mysite.com']);

P.S。您可能也对optimizing the asynchronous Google Analytics snippet in terms of byte size and performance上的帖子感兴趣。