教程开始
在wordpress主题文件目录下找到function文件,用代码编辑软件打开,在内的任意位置增加下面一段代码即可完成wordpress蜘蛛爬行记录生成的功能!
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, \'lycos\') !== false){ return \'Lycos\'; } if (strpos($useragent, \'robozilla\') !== false){ return \'Robozilla\'; } 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); }
注意事项
使用上面这段代码后,最好在网站的根目录创建个robotslogs.txt的文件,并且linux主机设置权限为777,然后过段时间,访问http://网址/robotslogs.txt 即可看到蜘蛛爬行记录了!
一些说使用后出错的朋友,请研究下function文件内,插入的位置!
继续阅读
评论