Skip to content

Instantly share code, notes, and snippets.

@roamingthings
Created December 10, 2013 08:22
Show Gist options
  • Save roamingthings/7887294 to your computer and use it in GitHub Desktop.
Save roamingthings/7887294 to your computer and use it in GitHub Desktop.
HTML Headers to turn of caching and search engines
<html>
<head>
<meta name="robots" content="noindex,nofollow"/>
<meta http-equiv="cache-control" content="max-age=0"/>
<meta http-equiv="cache-control" content="no-cache"/>
<meta http-equiv="expires" content="0"/>
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT"/>
<meta http-equiv="pragma" content="no-cache"/>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment