|
PHP屏蔽蜘蛛访问代码代码:
主要是判断HTTP_USER_AGENT- //屏蔽蜘蛛访问
- function banspider($ban_str){
- if(preg_match("/($ban_str)/i", $_SERVER['HTTP_USER_AGENT']))
- {
- exit;
- }
- }
复制代码 常用搜索引擎名与 HTTP_USER_AGENT对应值
百度baiduspider
谷歌googlebot
搜狗sogou
腾讯SOSOsosospider
雅虎slurp
有道youdaobot
Bingbingbot
MSNmsnbot
Alexais_archiver |
|
|
|
|
|
|