i just added a mod to my site that allows me to view the spiders that are currently crawling my site and came acrosse this spider the cuil spider i googled it and found that its a aparent website killing spider if this is true is there a way for me to block this bad boy either way if somebody could tell me about this spider good or bad i would appreciate it thanks rob
Cuil's spider is Twiceler. To block, use your robots file. Find more info about using your robots file at http://www.robotstxt.org
Cuil claims their bot does respect robots.txt only after 7 days You can try to block the cuil IP address via your .htaccess file or block the spider itself To block an IP (using your .htaccess file): order allow,deny deny from 67.218.116.162 deny from 67.218.116.163 deny from 67.218.116.164 deny from 67.218.116.165 deny from 67.218.116.166 allow from all Code (markup): or block cuil spider agent RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ^Twiceler RewriteRule ^.* - [F,L] Code (markup): Your hosting must has mod_rewrite installed