Skip to content

Instantly share code, notes, and snippets.

@andreasisaak
Created April 7, 2010 21:21
Show Gist options
  • Save andreasisaak/359477 to your computer and use it in GitHub Desktop.
Save andreasisaak/359477 to your computer and use it in GitHub Desktop.
If Condition mod_expires
# If Condition mod_expires
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 days"
<FilesMatch "\.(ico|jpg|jpeg|png|gif)$">
ExpiresDefault "access plus 10 days"
</FilesMatch>
<FilesMatch "\.(pdf|flv|swf|js|css)$">
ExpiresDefault "modification plus 10 days"
</FilesMatch>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment