How to romove google index? - Remove tag “no index no follow tags”

There is code you can put into your HTML which will prevent the bots from spidering your page(s). This code is put in the header of your web page(s) (meaning between the <head> and </head> tags), in the form of a meta tag (and you thought meta tags were for keywords only).

Here are four examples of how this code will look;

<meta name=”robots” content=”index,follow”>

<meta name=”robots” content=”noindex,follow”>

<meta name=”robots” content=”index,nofollow”>

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

There are two parameters; “index” and “follow”. “Index” refers to whether or not you want that particular page to be indexed. “Follow” refers to whether or not you want the spider to follow the links on that page. You would decide whether you wanted the page indexed, and whether you wanted the links followed. Based on that decision, you would chose one of the above options.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Technorati
  • LinkedIn
  • blogmarks
  • BlinkList
  • Furl
  • StumbleUpon
  • Google
  • Reddit
  • Print this article!

Leave a Comment for How to romove google index? - Remove tag “no index no follow tags”