2014-02-21 192 views
1

最近我更改了我的網站網址,當有人在Google中搜索我的網站時,它顯示舊網址時他們單擊它顯示404錯誤。當舊URL點擊舊URL時,是否有可能將舊URL重定向到新URL。在Google中搜索時將舊網址重定向到新網址

+0

你還是自己該域名? – iCode4U

+0

https://www.google.com/webmasters/tools/removals?pli=1 –

回答

0

你應該返回一個301(移動permantently)在您的舊網址的新文件。 例如:

<?php 
    header("HTTP/1.1 301 Moved Permanently"); 
    header("Location: http://www.New-Website.com"); 
?> 
0

或者用PHP:

<?php 
header("Location: http://yoururl"); 
?> 
0

在原來的網址,你可以使用標籤航線新的網址...

<META http-equiv="refresh" content="5;URL=http://www.example.com"> 
相關問題