Advertisement
Guest User

Untitled

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