Skip to content

Instantly share code, notes, and snippets.

@cmsimike
Created April 19, 2012 03:13
Show Gist options
  • Save cmsimike/2418140 to your computer and use it in GitHub Desktop.
Save cmsimike/2418140 to your computer and use it in GitHub Desktop.
disable css and js caching on the client for development
<IfModule mod_headers.c>
<FilesMatch "\.(css|js)$">
Header set Cache-Control "no-store"
</FilesMatch>
</IfModule>
$ sudo a2enmod headers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment