How do I get G, M and Y to removed my site from cache?

Sylvester

Newbie
Joined
Feb 22, 2009
Messages
35
Reaction score
1
I have a site that I use for testing stuff. It is in G's cache and probably Y and M. How do I get (a) removed from search listings and (b) removed from caches?

Usually most of us TRY to get listed... I did it by accident! :eek:
 
put this code on pages that are test-only:

Code:
<head>
<META NAME="ROBOTS" CONTENT="NOARCHIVE, NOINDEX, NOFOLLOW">
</head>

then drop some links to pages that you want deindexed. they should disappear if you drop enough links :)

NOARCHIVE tells the spiders not to cache your page
NOINDEX tells them not to index your page
NOFOLLOW tells them not to follow links on your page

i put NOARCHIVE on my doorways, so no one can snoop on them, after they are gone :)
 
Back
Top