建站知識
網站設計知識 網站建設知識 網絡營銷知識 微信資訊 常見問題 網站備案 近期客戶網站建設套餐
標準型網站建設 精美型網站建設 營銷型網站建設 高端品牌網站建設 電子商務型網站建設 行業(yè)門戶型網站建設 手機網站建設 微信網站建設更換域名自動跳轉的404代碼
原問:
假設以前有個為:http://www.abc.com/
現(xiàn)在要更換一個新的:http://www.123.com/
怎樣才能讓http://www.abc.com/自動跳轉到http://www.123.com/
我說的跳轉是在http://www.abc.com/帶有參數(shù)的時候,比如
http://www.abc.com/01/1.html 自動跳轉到 http://www.123.com/01/1.html
如果定義一個404錯誤,這個代碼怎么寫。
感謝 etangren
404.asp 你就這樣寫
CODE:[Copy to clipboard]<%
dim url
Private Function GetUrl()
Dim ScriptAddress, M_ItemUrl, M_item
ScriptAddress = CStr(Request.ServerVariables("SCRIPT_NAME")) '取得當前地址
M_ItemUrl = ""
If (Request.QueryString <> "") Then
ScriptAddress = ScriptAddress & "?"
For Each M_item In Request.QueryString
If InStr(page,M_Item)=0 Then
M_ItemUrl = M_ItemUrl & M_Item &"="& Server.URLEncode(Request.QueryString(""&M_Item&"")) &
"&"
End If
Next
end if
GetUrl = ScriptAddress & M_ItemUrl
End Function
%>
<%Response.Redirect "http://www.abc.com/"&Url&""%> 跳轉的