Created
May 5, 2015 08:17
-
-
Save TorbenL/41740e5c83b92efa31c6 to your computer and use it in GitHub Desktop.
Browser-Caching
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <IfModule mod_expires.c> | |
| ExpiresActive On | |
| ExpiresByType text/html "access plus 1 second" | |
| ExpiresByType text/css "access plus 2 weeks" | |
| ExpiresByType text/javascript "access plus 2 weeks" | |
| ExpiresByType image/jpg "access plus 3 weeks" | |
| ExpiresByType image/png "access plus 3 weeks" | |
| # ... | |
| </IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment