PHP中如何检查页面是直接加载还是从其他页面重定向?

发布于 2024-11-19 13:10:15 字数 129 浏览 1 评论 0原文

假设我有两个页面 Page1.php 和 Page2.php。有时直接加载 Page1.php,有时从 Page2.php 重定向。我的问题是我可以检查 Page1.php 是直接加载还是从 Page2.php 重定向。(如果未使用查询字符串)

Suppose I am having two pages Page1.php and Page2.php. Sometimes Page1.php is directly loaded and sometimes it is being redirected from Page2.php. My question is that can I check whether Page1.php is directly loaded or it's being redirected from the Page2.php.(if query string is not used)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

两相知 2024-11-26 13:10:15

在Page2.php中设置会话变量并在Page1.php中对其进行控制

Page2.php

<?php
session_start();
$_SESSION['from2'] = true;
header('Location: /Page1.php');
?>

Page1.php

<?php
session_start();
if(isset($_SESSION['from2']) && $_SESSION['from2']) {
  /* from Page2.php logic here */

  unset($_SESSION['from2']);
}else{
  /* not from Page2.php */
}
?>

Set a session variable in Page2.php and control for it in Page1.php

Page2.php

<?php
session_start();
$_SESSION['from2'] = true;
header('Location: /Page1.php');
?>

Page1.php

<?php
session_start();
if(isset($_SESSION['from2']) && $_SESSION['from2']) {
  /* from Page2.php logic here */

  unset($_SESSION['from2']);
}else{
  /* not from Page2.php */
}
?>
无所谓啦 2024-11-26 13:10:15

您可以读取全局变量$_SERVER['HTTP_REFERER']的值。

You can read the value of global variable $_SERVER['HTTP_REFERER'].

年少掌心 2024-11-26 13:10:15

$_SERVER['HTTP_REFERER']

查看手册以了解为什么它不可信:
https://www.php.net/manual/ro/reserved。变量.server.php

$_SERVER['HTTP_REFERER']

Though check out the manual to see why it cannot be trusted:
https://www.php.net/manual/ro/reserved.variables.server.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文