header("Location:http://www.bKjia.c0m/");
?>
代码如下 |
复制代码 |
$url=$_GET["url"];
header("Location:".$url);
?>
|
或者:
header("location:index123.php"); ?>
代码如下 |
复制代码 |
$url=""];
header("HTTP/1.1 301 Moved Permanently");
header ("Location:$url");
?>
|
通过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
|
|