How do I limit what the search engines can index ?

Limiting what search engines can index using /robots.txt

Various search engines such as Google have what are called "spiders" or "robots" continually crawling the web indexing content for inclusion in their search engine databases. While most users view inclusion in search engine listings in a positive light and high search engine rankings can translate to big bucks for commercial sites not everyone wants every single page and file stored on their account publicly available through web searches.

This is where /robots.txt comes in. Most search engine robots will comply with a webmaster/site owners wishes as far as excluding content by following a robots inclusion standard which is implemented via the use of a small ASCII text file named /robots.txt in the root web accessable directory of a given domain.

When a compliant robot visits a given site the first thing it does is to check the top level directory for the presence of a file named "robots.txt". If found the directives within the file which tells the robot what if any content it can or cannot visit and index is read, and in most cases honored.

Creating /robots.txt files

To create a /robots.txt file simply open a plain text editor such as Windows NotePad, type or paste your directives and save the file using the file name "robots" (robots.txt). This file should then be uploaded to the /public_html directory such that it's URL will be http://www.yourdomainname.com/robots.txt

/robots.txt syntax

All valid /robots.txt files must contain at least two lines in the following format:

User-Agent: [robot name or * for all robots]
Disallow: [name of file or directory you do not want indexed]

Unless one wishes to implement different rules for specific robots the user agent line should just include an asterisk [*] which is a wildcard read as "rules apply to all robots".

Disallow lines can be used to specify specific files or folders one doesn't wish to have indexed by search engines. Each file or folder to be excluded must be listed separately on it's own line, and wildcards are not supported in Disallow directives. One can have as many or as few disallow lines as is necessary.

Example /robots.txt files

- A simple /robots.txt file which would allow all robots to access and index all content with the exception of the contents of a directory named "private" would be as follows:

User-agent: *
Disallow: /private/

- A /robots.txt file which would exclude all robots from indexing the content of "cgi-bin", "admin" and "stuff" directories plus a page named "private.html" would be:

User-agent: *
Disallow: /cgi-bin/
Disallow: /admin/
Disallow: /stuff/
Disallow: /private.html

- A /robots.txt file which would allow all robots to access and index all content on a given site would be:

User-agent: *
Disallow:

- A /robots.txt file which would forbid all robots from accessing and indexing any content would be:

User-agent: *
Disallow: /

- A robots.txt file which would allow Google's spider (aka GoogleBot) to index all content with the exception of files stored under a folder named "private" and which would exclude all other robots from indexing any content would read as follows:

User-agent: GoogleBot
Disallow: /private/

User-agent: *
Disallow: /

- A robots.txt file which would allow all robots with the exception of HotBot's (aka Inktomi Slurp) to index all content with the exception of files stored under folders named "images" and "cgi-bin" and which would exclude the HotBot spider from indexing any content would read as follows:

User-agent: *
Disallow: /images/
Disallow: /cgi-bin/

User-agent: Inktomi Slurp
Disallow: /

More Information
For more details on /robots.txt and the Robots Exclusion Standard visit The Web Robots Pages at http://www.robotstxt.org

  • 0 کاربر این را مفید یافتند
آیا این پاسخ به شما کمک کرد؟

مقالات مربوطه

How do I create a redirect for my site?

The redirect option is available in your control panel. Please login into your control pane and...

How do I activate SSL in osCommerce?

In order to configure osCommerce to work with SSL please open the file...

CAPTCHA: Telling Humans and Computers Apart Automatically

A CAPTCHA is a program that protects websites against bots by generating and grading tests that...

How do I reset my password for osCommerce?

osCommerce uses .htaccess and .htpasswd format files to manage the protection on the admin...

How to Stop A Directory Index From Being Shown

Sometimes, for one reason or another, you will have no index file in your directory. This will,...