gpt4 book ai didi

php - 进行重定向时获取请求页面名称或 url

转载 作者:行者123 更新时间:2023-12-03 20:43:53 24 4
gpt4 key购买 nike

如何获取加载源页面的请求页面名称或uri。

解释如下:

索引.php

<?php
header('Location:target.php');
?>

目标.php

<?php
// How to check here if the redirection has happened from index.php
?>

最佳答案

您可以使用下面的代码

echo $_SERVER["HTTP_REFERER"];

但是为了确保您能够真正获得页面的确切来源,您可以在进行重定向之前将当前 url 存储到 session 中并将其读取到下一页。

在原始页面

$_SESSION['origin'] = $_SERVER['REQUEST_URI'];

然后在下一页

echo $_SESSION['origin'];

关于php - 进行重定向时获取请求页面名称或 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23027946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com