0
所以我已經加入這個我的GA腳本(在頁腳)特定跟蹤GA數據URI
_gaq.push(['_trackPageview' , '<?php $thisurl="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];echo $thisurl; ?>']);
我的問題是,當我們在看SRC代碼:我們看到..(我們about.php頁)
_gaq.push(['_trackPageview' , 'http://www.ourdomain.com/about.php']);
現在,這是正確的協議,或因爲setDomainName已經GA腳本中設置爲ourdomain.com ..
我們應該回應這個呢?
_gaq.push(['_trackPageview' , '/about.php']);
任何幫助理解