首页 > 开发 > PHP > 正文

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

2024-05-04 22:56:56
字体:
来源:转载
供稿:网友
如何在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;?>
<html>
<head>
<meta http-equiv="refresh" content="5; url=<? echo $url;?>>
</head>
<body>
</body>
</html>


三、用脚本来实现


举例如下:
<?
$url="http://www.phpuser.com";
echo "<!--<script language="javascript">";
echo "location.href='$url'";
echo "</script>-->";
?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表