apache做301跳轉的示例:
1.建立一個301.php文件,代碼如下:
<?php$the_host = $_SERVER [ 'HTTP_HOST' ]; //取得當前域名
$the_url = isset( $_SERVER [ 'REQUEST_URI' ]) ? $_SERVER [ 'REQUEST_URI' ] : '' ; //判斷地址后面部分
$the_url = strtolower ( $the_url ); //將英文字母轉成小寫
if ( $the_url == "/index.php" ) //判斷是不是首頁
{
$the_url = "" ; //如果是首頁,賦值為空
}
if ( $the_host !== 'www.icoa.cn' ) //如果域名不是帶www的網址那么進行下面的301跳轉
{
header( 'HTTP/1.1 301 Moved Permanently' ); //發出301頭部
header( 'Location:http://www.icoa.cn' . $the_url );//跳轉到帶www的網址
}
?>
2.在對應網頁文件中調用301.php即可,代碼如下:
<?php include ( "301.php" ); //301重定向 ?>