3

I have my personal homepage, and I want the main page itself to appear in search results. But I do not want a certain directory and its subdirectories to appear in google search results. How do I do this?

3 Answers3

3

There are several mechanisms you can use to do this.

The first is the robots.txt file. This is a protocol which is voluntarily followed by "good" search engines by google, and allows you to list sections of your site which they will not follow.

User-agent: *
Disallow: /myfolder/

The next is meta tags. Individual pages can be tagged with metadata which tells robots not to index or display them. Google has a nice writeup on how to implement these.

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

The final mechanism, if the pages have already been indexed, is to use the search engine's removal mechanism if one exists. I've linked to the documentation for Google, Bing, and Yahoo's removal mechanisms here:

JasonBirch
  • 4,143
  • 3
  • 26
  • 30
0

disallow the search bots to enter these locations:

http://www.robotstxt.org/robotstxt.html

google describes the procedure pretty good, example given:

User-agent: *
Disallow: /folder1/

This disallows all bots to index the content of "/folder1/"

akira
  • 251
  • 2
  • 4
0

Use a robots.txt file in your main folder and set it to:

User-agent: *
Allow: /

In the folder you don't want anyone to access put a robots.txt file with this body:

User-agent: *
Disallow: /

Checkout http://www.robotstxt.org/ for more info about robot.txt files.

Ben Hoffman
  • 12,768
  • 4
  • 41
  • 62