Skip to content

Instantly share code, notes, and snippets.

@jp26jp
Created April 17, 2016 18:35
Show Gist options
  • Save jp26jp/0c51e11b790755e28fe5cec947eb160f to your computer and use it in GitHub Desktop.
Save jp26jp/0c51e11b790755e28fe5cec947eb160f to your computer and use it in GitHub Desktop.
Prevent browser from caching website's files.
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment