Google bots have recently indexed my test web site which is not intended for users. How can i exclude my JSP web site from google's search result?

link|improve this question
feedback

migrated from stackoverflow.com Jan 24 '11 at 2:35

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 6 down vote accepted

Add a robots.txt file on the root of your server with:

User-agent: *
Disallow: /

You can also add this to your start page (or any page):

<html>
<head>
<title>...</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
</head>

This should stop all indexing for crawlers who play nice.

More information at http://www.robotstxt.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.