Home > php教程 > php手册 > body text

PHP URL 重定向 的三种方法(转)

WBOY
Release: 2016-06-13 10:51:20
Original
757 people have browsed it

[使用header()函数】
PHP的HTTP相关函数种提供了一个 header()函数,首先要清楚,header()函数必须放在php程序的开头部分,而且之前不能有另外的 header() 函数或者 setcookie() 被调用,如果是带有网页输出,本语句必须放在

标记之前。

使用如下语句:


header("location: http://www.bibias.com");
exit;
?>

只要执行这个语句就将自动把网页重定向到 http://www.bibias.com


【使用HTML标记重定向】





if(isset($url))
{
echo "";
}
?>




其中的 CONTENT="5;url=$url" 表示5秒后,本网页将自动转向 $url这个地址。


【用js脚本实现重定向】




$url="http://www.bibias.com";
echo "";
?>

没多少时间详细了解,倾向于用javascript这个
作者:青一

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template