Show different page if first time visit(第一次访问时显示不同的页面)
问题描述
我发现了一段代码,如果它是第一次访问,它会重定向,但是当我尝试使用它时,它只是停留在那个代码上.我对cookies及其工作原理不太了解,所以也许你可以帮忙!这是 PHP 代码:
I found a snippet of code that redirects if it's the first visit, but when I tried to use it, it just stayed at that code. I don't really understand too much about the cookies and how it works, so maybe you can help! Here's the PHP code:
<?php
session_start();
if (isset($_SESSION['FirstVisit'])) {
$_SESSION['FirstVisit'] = 1;
header("Location: http://example.com/index.php");
// Don't forget to add http colon slash slash www dot before!
}
?>
那么我该如何修复它,如果这是您第一次访问该网站,它会将您带到某个页面,如果不是,则是默认页面?
So how could I fix it so if it's your first visit to the site it brings you to a certain page, and if not, the default?
推荐答案
您可以使用以下代码:
<?php
if (!isset($_COOKIE['firsttime']))
{
setcookie("firsttime", "no", /* EXPIRE */);
header('Location: first-time.php');
exit();
}
else
{
header('Location: site.php');
exit();
}
?>
它会检查您是否有名为firsttime"的 cookie如果没有,它会创建它并重定向到您的 FIRSTTIME 页面...如果是,它只会将您重定向到该网站...
It will check if you have a cookie named "firsttime" and if not, it will create it and redirect to your FIRSTTIME page... If yes, it will just redirect you to the website...
编辑 2021请不要使用这种旧方法,而是使用框架或更好的代码.现在 10 岁了.
EDIT 2021 Please don't use this old method and either use a framework or better code. This is 10 years old now.
这篇关于第一次访问时显示不同的页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:第一次访问时显示不同的页面
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01