//判断该引导页面是否打开过,如果打开过直接跳转至首页! //使用cookie实现 if(isset($_COOKIE['history'])) { header("Location:index.php"); } else { //设置cookie,跳转至引导页面 setcookie("history",md5(time()),time()+86400) header("Location:guide.php"); }