Skip to content

Instantly share code, notes, and snippets.

@yudaprawira
Created September 1, 2016 03:47
Show Gist options
  • Save yudaprawira/bbfcad622d17003cd175f65517d2cbbf to your computer and use it in GitHub Desktop.
Save yudaprawira/bbfcad622d17003cd175f65517d2cbbf to your computer and use it in GitHub Desktop.
CACHING
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/font-woff "access plus 1 year"
ExpiresByType application/font-woff2 "access plus 1 year"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
## EXPIRES CACHING ##
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment