How not to get index and cached

amberlamps

BANNED
Joined
Jun 24, 2010
Messages
331
Reaction score
145
i really dont want my site index or cache.

i have alot of codes adn script i work on etc and i will not want someone to just some how find my site etc, how do i keep it from being index and cache.

is their some header i can place?
 
Hi man Look What I did you can do it too:
use <META> tags with someone else's domain is description etc' or a fake one.The bot will identify your content and relate it with other domain.
Good Luck
 
a combination of robots.txt and redirecting your home page to lemonparty should do the trick nicely.

as long as your scripts aren't linked from anywhere, they won't be indexed.
 
okay so if i undertsand correct a robot txt file in the root directory and

something like this

Code:
# Make changes for all web spiders
User-agent: *
Disallow: /

right should tell all spider not to crawl my site.
 
this link has all the information about robots.txt and meta tags related to indexing

hxxp://googleblog.blogspot.com/2007/02/robots-exclusion-protocol.html
 
<meta name="robots" content="noindex, nofollow">

is their one for a no cache i think i saw one somewhere but i cant seem to hit the right keeywords in google to bring up the search lol


never mind i found it

http://www.i18nguy.com/markup/metatags.html
 
http://searchengineland.com/google-explains-the-noindex-nofollow-noarchive-nosnippet-meta-tags-10595

NOINDEX tag tells Google not to index a specific page
NOFOLLOW tag tells Google not to follow the links on a specific page
NOARCHIVE tag tells Google not to store a cached copy of your page
NOSNIPPET tag tells Google not to show a snippet (description) under your Google listing, it will also not show a cached link in the search results
 
Back
Top