Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <IfModule mod_expires.c>
  2. ExpiresActive On
  3. ExpiresByType text/css "access plus 1 month"
  4. ExpiresByType text/javascript "access plus 1 month"
  5. ExpiresByType text/html "access plus 1 month"
  6. ExpiresByType application/javascript "access plus 1 month"
  7. ExpiresByType image/gif "access plus 1 month"
  8. ExpiresByType image/jpeg "access plus 1 month"
  9. ExpiresByType image/png "access plus 1 month"
  10. ExpiresByType image/x-icon "access plus 1 month"
  11. </IfModule>
  12. <ifmodule mod_headers.c>
  13. <filesmatch "\\.(ico|jpe?g|png|gif|swf)$">
  14. Header set Cache-Control "max-age=2592000, public"
  15. </filesmatch>
  16. <filesmatch "\\.(css)$">
  17. Header set Cache-Control "max-age=604800, public"
  18. </filesmatch>
  19. <filesmatch "\\.(js)$">
  20. Header set Cache-Control "max-age=216000, private"
  21. </filesmatch>
  22. </ifmodule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement