Library code snippets
I, Robot
Robot is a generic term for those sometimes helpful, sometimes pesky,
programs that index Web pages across the Internet to feed the
databases of search engines and other indexing sites. They're also
sometimes known as spiders, crawlers, or bots. And while it's often a
good thing that they crawl through your Web site, gathering the
information to help other Netizens find you on the Web, there may be
certain pages you don't want visiting robots to access at all. Most
major robots respect a file called robots.txt, which you can place in
the root of your Web site. This file gives instructions to robots about
which pages or directories they're allowed to index. The file format
is self-explanatory, so let's look at an example:
# Robots must obey the following:
This robots.txt illustrates the possible scenarios of disallowing
User-agent: * # The wildcard means ALL robots
Disallow: /test.asp # Do not index this particular page
Disallow: /administrative # This directory is off-limits!
Disallow: /jaf/test.asp # Don't index this page, but the rest
# of the directory is OK
entire directories as well as individual files. The pound sign (#)
introduces a UNIX-style comment. Be aware that not all robots will
honor this file, particularly the spiders on small or personal sites,
but this approach will allow you to protect your pages and directories
against major exposure.
Related articles
Related discussion
-
Calling a function from ASP code
by dunk00 (3 replies)
-
GridView HyperLinkField Problem
by Paul2 (0 replies)
-
looking for help on asp
by cladironbeard (2 replies)
-
simple vb to c#, help please
by lksath (1 replies)
-
Binary Studio | software development outsourcing Ukraine
by Hexfinity (2 replies)
Related podcasts
-
Scott Guthrie
Scott catches up with Scott Guthrie in an interview covering Ajax, Asp 2.0, extender controls, CSS adapters and more.
Events coming up
-
Aug
27
Model-View-Presenter (MVC) in ASP.NET
San Francisco, United States
Model-View-Presenter (MVC) in ASP.NET Presenter Clayton Peddy, Terrace Software, Inc. Details TBD
This thread is for discussions of I, Robot.