03.10 apache saved
leveille
Tags add more
Apache and cache  
Note
Setting up file caching, a very simple example
  1. #yes, this sets caching to 1 year for all served files, however implementing
  2. #some sort of versioning filename scheme prevents a lot of file serve issues when changes are made to file
  3. <IfModule expires_module>
  4.   ExpiresActive on
  5.   ExpiresDefault "access 1 year"
  6. </IfModule>
Parsed in 0.002 seconds, using GeSHi 1.0.7.14

Modify this Paste