最近管局严查未备案的域名,主要针对已备案的域名与网站内容不符的都将取消备案号,如果你现在已经被取消备案,但网站没有备案就无法访问,只能关闭网站,重新备案。
我们都知道网站关闭肯定影响seo,那我们就能使用下面一段代码。用户访问网站空白,但百度蜘蛛访问就正常访问,那么使用下面代码就可以做到,用户打开提示网站备案中
<blockquote>
<%
function GetBot()
'查询蜘蛛
dim s_agent
GetBot=""
s_agent=Request.ServerVariables("HTTP_USER_AGENT") '关键判断语句
if instr(1,s_agent,"googlebot",1) >0 then
GetBot="google"
end if
if instr(1,s_agent,"msnbot",1) >0 then
GetBot="MSN"
end if
if instr(1,s_agent,"slurp",1) >0 then
GetBot="Yahoo"
end if
if instr(1,s_agent,"baiduspider",1) >0 then
GetBot="baidu"
end if
if instr(1,s_agent,"sohu-search",1) >0 then
GetBot="Sohu"
end if
if instr(1,s_agent,"lycos",1) >0 then
GetBot="Lycos"
end if
if instr(1,s_agent,"robozilla",1) >0 then
GetBot="Robozilla"
end if
end function
if GetBot="baidu" then
'给百度定制的内容
elseif GetBot="google" then
'给google 定制的内容Else
Response.write "<script language=javascript>alert('网站备案中!');history.go(-1);</script>"
Response.End
end if
%>
</blockquote>
已有 777 位网友参与,快来吐槽:
发表评论