有没有办法检测用户是否第一次访问我的网站,如果是,请将它们重定向到某个页面,例如index-first-time-visitor.php - 如果它们不是第一次访问者,它将它们发送到index.php
如果有办法,请说明如何。
答案 0 :(得分:10)
将它放在index.php的顶部
<?php
if ($_COOKIE['iwashere'] != "yes") {
setcookie("iwashere", "yes", time()+315360000);
header("Location: http://example.com/index-first-time-visitor.php");
}
?>
Cookie将存活10年,之后,用户将再次成为“新”访问者。