seo

Blocking Bots Based on User-Agent

Normally as SEOs our focus is on giving Google and other search engines as much access to the sites we are working on as possible. There are times however in which privacy is a good thing. We have found blocking bots based on the user-agent very useful for development servers where you might be hosting multiple sites which you do not want crawled or indexed.

With major SE emphasis on real time content and freshness it is imperative to be certain in our live pages and their elements within. Blocking bots access has certainly saved us the embarrassment and any potential problems with indexation of content in advance of intended release.

Below are examples in accomplishing this on either Apache or IIS.

APACHE

On Apache servers it is very easy to block unwanted bots using the .htaccess file. Simply add the following code to the file to block the engines.

RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Googlebot [OR]RewriteCond %{HTTP_USER_AGENT} AdsBot-Google [OR]RewriteCond %{HTTP_USER_AGENT} msnbot [OR]RewriteCond %{HTTP_USER_AGENT} AltaVista [OR]RewriteCond %{HTTP_USER_AGENT} Slurp
RewriteRule . – [F,L]

The following code will return a 403 error to Google

If you would prefer to redirect the bots to a specific page then just replace the last line above with the following.

RewriteRule ^.*$ “http://www.yoursite.com/nobots.html” [R=301,L]

 

IIS

It is possible to do the same type of filtering on an IIS 7 server but it is more complicated. The easiest way I have found involves first installing the IIS URL Rewrite Module.

BOTS IIS

BOTS IIS2After the module is installed open the IIS Server Manager, select the site you would like to block, and open URL Rewrite.

Go to ‘Add Rule(s)…’ in the upper left of the window.

Select ‘Request blocking’ and click OK

 

 

 

 

IIS3

Use the following settings:

  • Block access based on: User-agent Header
  • Block request that: Matches the Pattern
  • Pattern (User-agent Header): Googlebot|Ads-Google|msnbot|Altavista|Slurp
  • Using: Regular Expressions
  • How to block: Send an HTTP 403 (Forbidden) Response

Then click ‘OK’

 

IIS4

You can test your settings using Chris Pederick’s great tool User Agent Switcher. When you first install it the options are a bit limited but a very exhaustive list of user agents can be found here. Using these methods to block user agents, while somewhat technical, will you or your developer the flexibility to work on-site without fear of indexation of pages that are in progress

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button