Home >php教程 >php手册 >PHP中重新定向到另一个页面

PHP中重新定向到另一个页面

WBOY
WBOYOriginal
2016-06-21 09:10:31793browse

页面

如何在PHP中从一个页面重定向到另外一个页面呢?这里列出了三种办法,供参考。

一、用HTTP头信息


也就是用PHP的HEADER函数。PHP里的HEADER函数的作用就是向浏览器发出由HTTP协议规定的本来应该通过WEB服务器的控制指令,例如声明返回信息的类型("Context-type: xxx/xxx"),页面的属性("No cache", "Expire")等等。
用HTTP头信息重定向到另外一个页面的方法如下:

if (isset($url))
{
Header("HTTP/1.1 303 See Other");[感谢李凌先生]
Header("Location: $url");
exit;
}
?>
注意一下,"Localtion:"后面有一个空格。

二、用HTML标记


用HTML标记,就是用META的REFRESH标记,举例如下:
if (!isset($url)) exit;?>


echo "";
?>



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP编程常用技巧Next article:PHP3中文文档(续5)