WordPress博客查看搜索引擎蜘蛛来访记录的方法
说明:很多人想知道自己的博客网站经常有哪些蜘蛛来过,来过多少次,对于这个问题,通常都会用插件来解决,其实除了插件我们还可以通过使用代码的方法来查看蜘蛛的来访记录,这里就说下方法,本文的代码是从网上找的,然后自己就增加了几个主流的搜索引擎蜘蛛。
方法
首先将下列代码放入主题目录下functions.php
文件。
//统计蜘蛛 | |
function get_naps_bot(){ | |
$useragent = strtolower($_SERVER['HTTP_USER_AGENT']); | |
if (strpos($useragent, 'Googlebot') !== false){ | |
return 'Googlebot'; | |
} | |
if (strpos($useragent, 'msnbot') !== false){ | |
return 'MSNbot'; | |
} | |
if (strpos($useragent, 'slurp') !== false){ | |
return 'Yahoobot'; | |
} | |
if (strpos($useragent, 'Baiduspider') !== false){ | |
return 'Baiduspider'; | |
} | |
if (strpos($useragent, 'sohu-search') !== false){ | |
return 'Sohubot'; | |
} | |
if (strpos($useragent, '360Spider') !== false){ | |
return '360Spider'; | |
} | |
if (strpos($useragent, 'Sosospider') !== false){ | |
return 'Sosospider'; | |
} | |
if (strpos($useragent, 'bingbot') !== false){ | |
return 'bingbot'; | |
} | |
if (strpos($useragent, 'Sogouspider') !== false){ | |
return 'Sogouspider'; | |
} | |
return false; | |
} | |
function nowtime(){ | |
date_default_timezone_set('Asia/Shanghai'); | |
$date=date("Y-m-d.G:i:s"); | |
return $date; | |
} | |
$searchbot = get_naps_bot(); | |
if ($searchbot) { | |
$tlc_thispage = addslashes($_SERVER['HTTP_USER_AGENT']); | |
$url=$_SERVER['HTTP_REFERER']; | |
$file="robotslogs.txt"; | |
$time=nowtime(); | |
$data=fopen($file,"a"); | |
$PR="$_SERVER[REQUEST_URI]"; | |
fwrite($data,"Time:$time robot:$searchbot URL:$tlc_thispage\n page:$PR\r\n"); | |
fclose($data); | |
} |
然后需要在根目录新建一个txt
文本robotslogs.txt
,权限设置为777
,之后访问http://your_domain/robotslogs.txt
就可以很详细的看到蜘蛛的来访记录了。
版权声明:
作者:隔壁小色
链接:https://www.fanooo.com/archives/43
文章版权归作者所有,未经允许请勿转载。
THE END