義烏網站建設講解301轉向(或叫301重定向,301跳轉)是用戶或蜘蛛向網站服務器發出訪問請求時,服務器返回的HTTP數據流中頭(HEADER)部份狀態碼的一種,表示本網址永久性轉移到另一個地址.
義烏做網站301轉向ASP代碼:
<%@ language=VBScript %>
<%Response.Status="301 moved Permanently" Response.AddHeader "Location","http://metaverseregal.com"
%>
義烏網站建設301轉向PHP代碼:
header("http/1.1 301 Moved Permanently");
header("Location:http://metaverseregal.com");
?>