How can I prevent my public JSP page from appearing within the search results of an engine like Google or Yahoo?
Created Jan 21, 2005
Govind Seshadri You can add a meta tag to the generated HTML content indicating that the page must not be indexed by the search engine's spider.
<head> <meta name="robots" content="noindex"> ... </head>