<html>
<head>
<title>HTTP/1.1 301 Moved Permanently</title>
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: www.hanwangtx.com" );
?>
</head>
<body>
HTTP/1.1 301 Moved Permanently
</body>
</html>
小貼士:
301重定向是永久性重定向,當用戶或者搜索引擎向我們的網站發出浏覽請求時,網站服務器返會返還http 數據流,該數據流頭信息(header)裡包含某種狀態碼,301 就是表示本網頁永久性轉移到另一個地址的一個狀態碼
筆記,關於header函數
header(string,replace,http_response_code)
header() 函數向客戶端發送原始的 http 報頭。
認識到一點很重要,即必須在任何實際的輸出被發送之前調用 header() 函數(在 php 4 以及更高的版本中,您可以使用輸出緩存來解決此問題)