Skip to content

Instantly share code, notes, and snippets.

@robhob
Last active August 21, 2017 18:04
Show Gist options
  • Save robhob/fb49ca4faad9807f4378fd4cd3c88fe1 to your computer and use it in GitHub Desktop.
Save robhob/fb49ca4faad9807f4378fd4cd3c88fe1 to your computer and use it in GitHub Desktop.
# One year for image files
<filesMatch ".(jpg|jpeg|png|gif|ico)$">
Header set Cache-Control "max-age=31536000, public"
</filesMatch>
# One month for css and js
<filesMatch ".(css|js)$">
Header set Cache-Control "max-age=2628000, public"
</filesMatch>
# One year for ttf and woff
<filesMatch ".(ttf|woff)$">
Header set Cache-Control "max-age=31536000, public"
</filesMatch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment