最簡單的就是利用php header實現
代碼是:
代碼如下 復制代碼<?php
header("Location:http://www.111cn.net/");
?>
或者:
<? header("location:index123.php"); ?>
通過get或post獲取值再跳轉
有時候可以看到http://www.xxx.com/url.php?url=http://www.baidu.com,然後就跳轉到百度。
如何用php實現這個url跳轉呢?
只用簡單的幾行代碼,就可以實現。
<?php
$url=$_GET["url"];
header("Location:".$url);
?>
PHP 301轉向實現代碼
代碼如下 復制代碼<?php
$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