asp頁面實現301重定向的方法:
在首頁網頁文件中添加一下代碼:
<%
//獲取當前訪問的域名
website=request.ServerVariables("Server_name")
//判斷如果你的域名如果是yisu.com
if website="yisu.com" then
//做301重定向到www.neiyidaogou.com
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.neiyidaogou.com/"
end if
%>