Skip to content

Instantly share code, notes, and snippets.

@topleague
Last active December 14, 2017 17:30
Show Gist options
  • Select an option

  • Save topleague/e7f2d0edac1a21fb941109f8d515efd4 to your computer and use it in GitHub Desktop.

Select an option

Save topleague/e7f2d0edac1a21fb941109f8d515efd4 to your computer and use it in GitHub Desktop.
Leverage Browser Caching
#Set caching on image files for 11 months
<filesMatch "\.(ico|gif|jpg|png|svg)$">
ExpiresActive On
ExpiresDefault "access plus 11 month"
Header append Cache-Control "public"
</filesMatch>
<filesMatch "\.(css|js)$">
ExpiresActive On
ExpiresDefault "access plus 1 week"
Header append Cache-Control "public"
</filesMatch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment