요즘 로봇들은 긁어갈때 서버에 부담을 많이주며, 트래픽도 많이 발생시킵니다.
아래와 같이 로봇들의 접근을 막아 서버 부담과, 트래픽을 줄여봅시다..

xe 1.4.5.10 기준..

xe/index.php line 36..

define('__ZBXE__', true); 다음행에 아래 소스를 추가해주시면됩니다.

/*
   @ 검색 로봇 차단
   @ Copyright : Sky <admin at skylove.co.cc>
   @ License  : GPLv3
*/

$needle = array(
'libwww-perl',
'curl',
'wget',
'python',
'Googlebot',
'Yahoo! Slurp',
'msnbot',
'bingbot',
'Yeti',
'YandexBot',
'Baiduspider',
'NaverBot',
'Daumoa',
'MSIE 5.0',
'MSIE 5.5',
'MJ12bot',
'Google Web Preview'
);
foreach($needle as $what) {
if(($pos = strpos($_SERVER['HTTP_USER_AGENT'], $what)) !== false) {
header('HTTP/1.0 404 Not Found');
header('Status: 404 Not Found');
exit;
}
}