利用404跳转来解决域名更换等问题
【以稿换稿 】 作者:佚名 发布:2016年06月22日 阅读: 次
当更换域名之后,搜索引擎和其它外部来的访问可能还会指向原有的域名,下面介绍一些思路来解决这个问题。
第一:利用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
%>
【来源:互联网络】
- 上一篇:超级简单实现内容页“首字下沉”效果
- 下一篇:关闭网站页面时弹出加入收藏提示
用户评论
(以下评论仅代表网友意见,与本站立场无关)