主頁 > 知識庫 > asp實現(xiàn)禁止搜索引擎蜘蛛訪問的代碼

asp實現(xiàn)禁止搜索引擎蜘蛛訪問的代碼

熱門標(biāo)簽:微信地圖標(biāo)注有什么用 北京大興區(qū)地圖標(biāo)注 地圖標(biāo)注不完整被罰款 地圖標(biāo)注中心多少錢注冊 電銷機(jī)器人一個多少錢 鄭州語音電銷機(jī)器人官網(wǎng) 重慶外呼電銷系統(tǒng)費(fèi)用 濰坊呼叫中心外呼系統(tǒng)供應(yīng)商 不封卡外呼系統(tǒng)一般多少錢

這段代碼可以控制常用的搜索引擎無法訪問asp頁面,需要在每個asp頁面包含這段代碼。

%
function isspider()
dim i,agent,searray
agent="agent:"LCase(request.servervariables("http_user_agent"))
searray=array("googlebot","baiduspider","sogouspider","yahoo","Sosospider")
isspider= false
for i=0 to ubound(searray)
 if (instr(agent,searray(i))>0) then isspider=true
next
end function

function fromse()
dim urlrefer,searray,i
urlrefer="refer:"LCase(request.ServerVariables("HTTP_REFERER"))
fromse= false
if urlrefer="" then fromse= false
searray=array("google","baidu","sogou","yahoo","soso")
for i=0 to ubound(searray)
 if (instr(urlrefer,searray(i))>0) then fromse=true
next
end function

if(isspider()) then
 dim myfso,fileurl,filecon,myfile
 fileurl=Server.MapPath("images/bg01.gif")
 Set myfso=Server.CreateObject("Scripting.FileSystemObject")
 if myfso.FileExists(fileurl) then
  Set myfile=myfso.OpenTextFile(fileurl, 1)
  filecon=myfile.readAll
  response.write(filecon)
  myfile.Close
  Set myfile=Nothing
  Set myfso=Nothing
  response.end
 end if
end if                
if (fromse()) then
 response.write("br/>")
 response.end
else
end if
%>

以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。

您可能感興趣的文章:
  • asp.net(c#)捕捉搜索引擎蜘蛛和機(jī)器人
  • asp 判斷是否為搜索引擎蜘蛛的代碼
  • php 判斷訪客是否為搜索引擎蜘蛛的函數(shù)代碼
  • PHP判斷搜索引擎蜘蛛并自動記憶到文件的代碼
  • PHP屏蔽蜘蛛訪問代碼及常用搜索引擎的HTTP_USER_AGENT
  • PHP記錄搜索引擎蜘蛛訪問網(wǎng)站足跡的方法
  • php/asp/asp.net中判斷百度移動和PC蜘蛛的實現(xiàn)代碼
  • 根據(jù)user-agent判斷蜘蛛代碼黑帽跳轉(zhuǎn)代碼(js版與php版本)

標(biāo)簽:撫州 海南 佛山 唐山 鶴崗 汕頭 揭陽 攀枝花

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp實現(xiàn)禁止搜索引擎蜘蛛訪問的代碼》,本文關(guān)鍵詞  asp,實現(xiàn),禁止,搜索引擎,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp實現(xiàn)禁止搜索引擎蜘蛛訪問的代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp實現(xiàn)禁止搜索引擎蜘蛛訪問的代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章