Skip to content

Instantly share code, notes, and snippets.

@tsquez
Created July 28, 2018 18:32
Show Gist options
  • Save tsquez/c2ecc97bfd146e159060f47465bc08a9 to your computer and use it in GitHub Desktop.
Save tsquez/c2ecc97bfd146e159060f47465bc08a9 to your computer and use it in GitHub Desktop.
<filesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|svg|js|css|swf)$">
Header set Cache-Control "max-age=2628000, public"
</filesMatch>
## EXPIRES HEADER CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType image/svg "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType application/javascript "access 1 month"
ExpiresByType application/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment