Skip to content

Instantly share code, notes, and snippets.

@Igor-Lopes
Last active May 1, 2017 04:32
Show Gist options
  • Save Igor-Lopes/5de838197166a6a894ec2d9acdbe17f5 to your computer and use it in GitHub Desktop.
Save Igor-Lopes/5de838197166a6a894ec2d9acdbe17f5 to your computer and use it in GitHub Desktop.
.htaccess to avoid caching
<filesMatch "\.(html|htm|js|css)$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</ifModule>
</filesMatch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment