Skip to content

Instantly share code, notes, and snippets.

@cwsaylor
Created January 17, 2012 00:41
Show Gist options
  • Save cwsaylor/1623828 to your computer and use it in GitHub Desktop.
Save cwsaylor/1623828 to your computer and use it in GitHub Desktop.
Prevent page caching
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
@raboof
Copy link

raboof commented Apr 9, 2021

Shouldn't 01 Jan 1990 be a Monday?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment