萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php 頁面跳轉實現程序代碼

php 頁面跳轉實現程序代碼

下面我們總結了php中頁面跳轉幾種方法,在php要實現跳轉,就需要使用到header函數哦,下面我來一一介紹有需要的朋友可參考一下。

最簡單的就是利用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

copyright © 萬盛學電腦網 all rights reserved