Skip to content

Instantly share code, notes, and snippets.

@Andreyco
Created March 7, 2016 09:53
Show Gist options
  • Save Andreyco/d09c128c46fb033e01a6 to your computer and use it in GitHub Desktop.
Save Andreyco/d09c128c46fb033e01a6 to your computer and use it in GitHub Desktop.
Control assets versions via mod_expires
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "modification"
ExpiresByType image/jpeg "modification"
ExpiresByType image/gif "modification"
ExpiresByType image/png "modification"
ExpiresByType text/css "modification"
ExpiresByType application/pdf "modification"
ExpiresByType text/x-javascript "modification"
ExpiresByType application/x-shockwave-flash "modification"
ExpiresByType image/x-icon "modification"
ExpiresDefault "modification"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment