Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Last active January 3, 2016 21:59
Show Gist options
  • Save sdeluce/8525249 to your computer and use it in GitHub Desktop.
Save sdeluce/8525249 to your computer and use it in GitHub Desktop.
<IfModule mod_headers.c>
# Images
<FilesMatch "\\.(ico|jpe?g|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</FilesMatch>
# Fonts
<FilesMatch "\\.(ttf|eot|woff|otf|svg)$">
Header set Cache-Control "max-age=2592000, public"
</FilesMatch>
# Style
<FilesMatch "\\.(css)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
# scripts
<FilesMatch "\\.(js|htc)$">
Header set Cache-Control "max-age=216000, private"
</FilesMatch>
#html | php
<FilesMatch "\\.(x?html?|php)$">
Header set Cache-Control "max-age=600, private, must-revalidate"
</FilesMatch>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment