Created
February 20, 2009 03:09
-
-
Save ebot/67276 to your computer and use it in GitHub Desktop.
Default compression and expires settings for performance and YSlow
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
| # Default compression and expires settings for performance and YSlow | |
| # Set compression | |
| SetOutputFilter DEFLATE | |
| AddOutputFilter DEFLATE css js | |
| AddType text/javascript .js | |
| AddType text/css .css | |
| ### turn on the Expires engine | |
| ExpiresActive On | |
| ### default expires after a month in the client's cache | |
| ExpiresByType application/x-javascript "access plus 7 days" | |
| ExpiresByType text/css "access plus 3 days" | |
| ExpiresDefault "access plus 1 month" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment