0

在 Google Analytics 中,我使用虚拟页面浏览量来跟踪目标。我拿

trackingURL = window.location.pathname+'thankyou.php';

接着

_gaq.push(['_trackPageview',trackingURL]);

问题是当一个页面类似于 www.domain.com/page.php 它最终成为 domain.com/page.phpthankyou.php 并且没有正确跟踪,但如果它是 domain.com/page/ 然后它变成了domain.com/page/thankyou.php 它会正确跟踪。

我怎样才能获得完整的 url,没有扩展名,所以我可以添加 /thankyou.php,但如果它已经是 / 结尾的目录,那么我只想添加thankyou.php?

谢谢!

4

1 回答 1

1

使用它(如果找到它,它只会用斜杠替换扩展名)

trackingURL = window.location.pathname.replace(".php","/") +'thankyou.php';

替换domain.com/page.phpdomain.com/page/

于 2013-09-10T11:08:47.783 回答