MyBB Community Forums

Full Version: Ban Bots For Accessing My Forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I get about banning bots from accessing my forum they are not spamming my forum I just want to block them from accessing the forum??
Use Javascript Bot Protection Plugin
http://mods.mybb.com/view/javascript-bot-protection
If your aim is to ban bots intended as crawlers/spiders, you should add a file named robox.txt into your Forum root with the following code:

User-agent: *
Disallow: /

Optionally, you can insert this line of code at the top of headerinclude template:

<meta name="robots" content="noindex,nofollow" />

This will simply tell crawlers that every page of your Forum shouldn't be indexed.