Advertisement
kyob

htaccess cache

Aug 19th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # 1 TYDZIEN
  2. <FilesMatch "\.(ico|pdf|flv)$">
  3. Header set Pragma "cache"
  4. Header set Cache-Control "s-maxage=604800, public"
  5. </FilesMatch>
  6. # 15 MINUT
  7. <FilesMatch "\.(jpg|jpeg|png|gif|swf)$">
  8. Header set Pragma "cache"
  9. Header set Cache-Control "s-maxage=900, public"
  10. </FilesMatch>
  11. # 15 SEKUND
  12. <FilesMatch "\.(html|htm|php|xml|txt|css|js)$">
  13. Header set Pragma "cache"
  14. Header set Cache-Control "s-maxage=30, public"
  15. </FilesMatch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement