Skip to content

Instantly share code, notes, and snippets.

@mgilberties
Created September 30, 2014 19:46
Show Gist options
  • Save mgilberties/2e299d78c4587882dea1 to your computer and use it in GitHub Desktop.
Save mgilberties/2e299d78c4587882dea1 to your computer and use it in GitHub Desktop.
Set Mod_Expires for SEO - Caches Images
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment