How to redirect to the same page in PHP(如何在 PHP 中重定向到同一页面)
问题描述
如何使用 PHP 重定向到同一页面?
How can I redirect to the same page using PHP?
比如我本地的网址是:
http://localhost/myweb/index.php
如何在我的网站内重定向到另一个页面,例如:
How can I redirect within my website to another page, say:
header("Location: clients.php");
我知道这可能是错误的,但我真的需要把整个事情都写出来吗?如果稍后它不是 http://localhost/
怎么办?
I know this might be wrong, but do I really need to put the whole thing? What if later it is not http://localhost/
?
有没有办法做这样的事情?另外,我有很多代码,然后在处理完一些代码后最后......我正在尝试使用它进行重定向.可以吗?
Is there a way to do something like this? Also, I have a lot of code and then at the end after it is done processing some code... I am attempting to redirect using that. Is that OK?
推荐答案
有许多不同的$_SERVER
(docs) 返回有关当前页面的信息的属性,但我的首选方法是使用 $_SERVER['HTTP_HOST']
:
There are a number of different $_SERVER
(docs) properties that return information about the current page, but my preferred method is to use $_SERVER['HTTP_HOST']
:
header("Location: " . "http://" . $_SERVER['HTTP_HOST'] . $location);
其中 $location
是域之后的路径,以 /
开头.
where $location
is the path after the domain, starting with /
.
这篇关于如何在 PHP 中重定向到同一页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 PHP 中重定向到同一页面
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01