检测用户是否是第一次访问者,如果是,则重定向到页面,如果不是,则重定向到另一页面

时间:2011-10-10 14:45:51

标签: cookies redirect detect

有没有办法检测用户是否第一次访问我的网站,如果是,请将它们重定向到某个页面,例如index-first-time-visitor.php - 如果它们不是第一次访问者,它将它们发送到index.php

如果有办法,请说明如何。

1 个答案:

答案 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年,之后,用户将再次成为“新”访问者。