A "robot" is a program that search engines use to follow links, read web pages, and create indexes of the information they find on the web pages. There are several reasons why you might want to prevent robots from indexing your web page.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact Advertise on Bucaro TecHelp Advertise Here RSS News Feeds News Feeds

HTML5 Solutions: Essential Techniques for HTML5 Developers

Essential Techniques for HTML5 Developers

HTML5 brings the biggest changes to HTML in years. Web designers now have new techniques, from displaying video and audio natively in HTML, to creating realtime graphics on a web page without a plugin.

This book provides a collection of solutions to all of the most common HTML5 problems. Every solution contains sample code that is production-ready and can be applied to any project.

Click Here

How to Hide From Robots

A "robot" is a program that search engines use to follow links, read web pages, and create indexes of the information they find on the web pages. Also referred to as a "spider" or "crawler", many people think a robot travels around the web. A robot travels the web the same way your browser surfs the web, never leaving the machine it is running on.

There are several reasons why you might want to prevent robots from indexing your web page.

1.You may store administrative information on your web host for backup purposes.
2.You can password protect files without getting involved with the servers authentication mechanisms.
3.You can prevent users from running scripts arbitrarily.
4.You can reduce the bandwidth consumption of your web site.

One way to exclude robots is to place a text file named robots.txt at the root of your web site. In the file, list the robots that you want to exclude, and the files or folders that you want to exclude.

Since it is difficult to know the identities of the robots, you probably want to exclude all robots. The first line of your robots.txt file should be:

User-Agent: *

Below that list the files or folders that you want to exclude. Below is an example of the contents of a robots.txt file that excludes all robots from a folder named "backup" and a folder named "cgi-bin".

User-Agent: *
Disallow: /backup/
Disallow: /cgi-bin/

If you need to exclude many files on a file-by-file basis, you may find a robots.txt file too difficult to maintain. In that case, you may prefer to use meta tag exclusion. A meta tag is an html tag that you place in the HEAD section of your web page. Below is a meta tag that instructs robots to not index the web page.

<meta name="robots" content="noindex">

If you want robots to index the page, but not to follow links on the page, us the meta tag shown below.

<meta name="robots" content="nofollow">

The meta tag shown below instructs robots to not index and not follow links on the page.

<meta name="robots" content="noindex, no follow">

The methods described above allow you control how robots index your web site. Preventing robots from indexing a web page hides it from visitors to your web site. This assumes that you have configured your web site to not allow visitors to "list" the files on your web site. Of course even without the ability to list, a visitor can still access a file if they can guess the name of the file.

Web Design Sections

RSS Feed RSS Feed

Google Reader or Homepage
Add to My Yahoo!
Subscribe with Bloglines
Subscribe in NewsGator Online

Add to My AOL
Add to Technorati Favorites!

Coding Issues
Six Ways to Center an Element on a Webpage
Don't Let doors.txt Take Control of Your Email Server
RSS Basics
Create a Favicon for Your Web Site
Create a Simple, Effective PHP Form for Your Web Site
Advantages and Disadvantages of Frames
Web Design Blunders That Can Cost You Lost Profits
How to Hide From Robots
Syndicate your own content Using aspSyndicator
Playing QuickTime Movies on Your Webpage
How To Effortlessly Use Streaming Audio
Video - Optimizing the Order of Scripts and Styles
Web Designer's Reference
Video - HTTP caching
What is a Web Service?
What is AJAX?
Updates are a SNAP With Server Side Includes
Seven Effective Ways to Build Your Own Web Site
Web Design Troubleshooting Guide
Increase Your Traffic by Recovering Your Lost Visitors
Why a CSS Website Layout Will Make You Money
Why Aren't You Using CGI?
How to Redirect a Web Page Using a 301 Redirect
Update Your Entire Website Instantly


[Site User Agreement] [Advertise on This site] [Search This Site] [Contact Form]
Copyright©2001-2011 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268