Home  >  Article  >  php教程  >  php 页面跳转实现程序代码

php 页面跳转实现程序代码

WBOY
WBOYOriginal
2016-06-13 10:15:161213browse

下面我们总结了php中页面跳转几种方法,在php要实现跳转,就需要使用到header函数哦,下面我来一一介绍有需要的朋友可参考一下。

最简单的就是利用php header实现

代码是:

 代码如下 复制代码

header("Location:http://www.bKjia.c0m/");
?>

或者:

header("location:index123.php"); ?>

通过get或post获取值再跳转

有时候可以看到http://www.xxx.com/url.php?url=http://www.baidu.com,然后就跳转到百度。
如何用php实现这个url跳转呢?
只用简单的几行代码,就可以实现。

 代码如下 复制代码

$url=$_GET["url"];
header("Location:".$url);
?>

PHP 301转向实现代码

 代码如下 复制代码

$url=""];
header("HTTP/1.1 301 Moved Permanently");
header ("Location:$url");
?>

在ff看到状态代码

容易吧.要测试就用curl这个小软件来检查.
#curl -I
HTTP/1.0 301 Moved Permanently
Date: Tue, 06 May 2008 06:27:39 GMT
Server: apache
Location:
如见到上面的HTTP/1.0 301 Moved Permanently

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