利用404跳转来解决域名更换等问题
【小 中 大】【收藏】 作者: 佚名 来源: 互联网络 阅读 次 【加入会员】
当更换域名之后,搜索引擎和其它外部来的访问可能还会指向原有的域名,下面介绍一些思路来解决这个问题。
第一:利用javascript进行404跳转
第二:vbscript版本的
<script language="vbscript">
const newdomain = "http://wwwwmjy.cn" '新域名
const stoptime = 2 '404页面停留时间,以秒为单位
dim My_Url
My_Url = document.location.href
My_Url = mid(My_Url,instr(8,My_Url,"/"))
document.write("<meta http-equiv='refresh' content='" & stoptime & ";url=" & newdomain & My_Url & "'>")
</script>
第三:asp文件404
<%
dim:url,newdomain
newdomain="www.wmjy.cn/" '新玉米加上/
url=Request.ServerVariables("URL") '取得当前路径
Response.Redirect "http://"&newdoamin&URl
Response.End()
%>
第四:如果是同一个空间 仅仅是换米的话 如果是asp文件 可以用下面的代码废掉旧米
R.asp
<%
dim:url,newdomain
newdomain="www.wmjy.cn" '新玉米
If Request.ServerVariables("Server_name")<>newdomain Then
url=Request.ServerVariables("URL") '取得当前路径
Response.Redirect "http://"&newdoamin&"/"&URl
Response.End()
End If
%>
手机扫码阅读本文
- 上一篇:超级简单实现内容页“首字下沉”效果
- 下一篇:关闭网站页面时弹出加入收藏提示