1) 使用元标记进行重定向
<meta http-equiv="Refresh" content="6; URL=yoururlhere" />
其中,当前页面将在6秒后重定向到给定的url。
2) 只为新访问者显示简介页面,如果有人已经看到,则不能再次显示。在页面标题中进行检查。php在声明之前的最顶部添加以下内容,并且在结束php标记和DOCTYPE标记之间不要留下任何空格:
if (!isset($_COOKIE[\'visited\'])) /* if the visitor is a new */
{
setcookie(\'visited\', true, time() + 3600 * 24);
}
正如您所说,您需要使用javascript。下面是在javascript中设置cookie并检查其是否存在的代码。
if (document.cookie.indexOf("visited") >= 0) {
alert("hello again");
}
else {
document.cookie = "visited=true; max-age=" + 60 * 60 * 24 * 10; // 60 seconds to a minute, 60 minutes to an hour, 24 hours to a day, and 10 days.
alert("This is your first time!");
}
要阅读有关javascript中cookie设置的更多信息,请查看
this