2010年5月24日 星期一

PHP 的 301 轉址

301 轉址的標準用法

<?php
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>


可以寫成以下方法


<?php
$url="http://www.new-url.com";
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: ".$url; );
?>

相關文章

沒有留言:

張貼留言