Search
Related Links

I am building a website and have a few pages that I don't want to show up in search results, such as a TOS page and a completed orders page. How can I code for search engines to not index these files?
No follow might work but one page is already

The search engines should be easy enough to stop, just put a file called "robots.txt" in the root directory with this in it:

User-agent: *
Disallow: /

This is intriduction to robots.txt http://www.javascriptkit.com/howto/robot

Stas S | Sep 15, 2010
Partners