2011-02-01 82 views
1

我需要重定向訪問某個頁面的用戶,而無需在查詢字符串中提供特定參數。如何以正確的方式將用戶重定向到其他頁面?所以搜索引擎不會因此而懲罰我。如何將用戶重定向到另一個頁面?

+6

@Col:看起來Daniel A. Lemming在下面提供了一個很好的答案。 – 2011-02-01 18:58:38

+0

@羅伯特哈維你不能確定 – 2011-02-02 06:19:48

回答

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

永久移動是什麼幫助搜索引擎。

1
if($condition){ 
header('Location: http://example.com'); 
exit(); 
} 

會做到這一點。別忘了exit()

+0

搜索引擎? – Shoe 2011-02-01 15:41:06

-1
<?php 
    Header("HTTP/1.1 302 Moved Temporarily"); 
    Header("Location: http://www.new-url.com"); 
    exit(); 
?> 
0

<?php 
 
/* Redirect browser */ 
 
header("Location: http://www.google.com"); 
 
    
 
/* Make sure that code below does not get executed when we redirect. */ 
 
exit; 
 
?>

相反的http://www.google.com,要駁你的頁面,您可以編寫自己的網址。

相關問題