我们正在通过php wordpress运行网站。我们还在Google adwords中添加了网站广告。当某些用户点击广告时,它会登陆网站上的某个页面。在该页面上,我想知道用户是通过点击谷歌adwords还是通过其他方式进入页面。
有什么方法可以做到这一点吗?用户登陆网页时应该检查什么? (推荐人等......)
感谢阅读!
答案 0 :(得分:1)
制作Google AdWords广告系列时,请使用特殊的点击网址,其中包含您可以验证的查询字符串。像这样:
https://your.domain/page.php?from=adwords
然后,检查它是一件简单的事情:
<?php
if ($_GET['from'] == "adwords") {
/* do special stuff, like store things in a database */
/* Finally, maybe redirect them to some other page, if necessary */
header('Location: /');
}
?>