mod_expires – This module controls the setting of the Expires HTTP header in server responses. The expiration date can set to be relative to either the time the source file was last modified, or to the time of the client access.
The Expires HTTP header is an instruction to the client about the document’s validity and persistence. If cached, the document may be fetched from the cache rather than from the source until this time has passed. After that, the cache copy is considered “expired” and invalid, and a new copy must be obtained from the source.
mod_expires is included in most default installs.
Check wheter LoadModule expires_module modules/mod_expires.so is enabled or not in httpd.conf, if its not then uncomment it removing the # prefix.
And then add following code into your httpd.conf configuration file -
# enable expirations
ExpiresActive on
# expire images after a month in the client’s cache
ExpiresByType image/jpg “access plus 60 days”
ExpiresByType image/png “access plus 60 days”
ExpiresByType image/gif “access plus 60 days”
ExpiresByType image/jpeg “access plus 60 days”
# css may change sometimes
ExpiresByType text/css “access plus 1 days”
# special MIME type for icons
ExpiresByType image/x-icon “access plus 360 days”
</IfModule>
Restart apache server.
Resource links -
http://blog.cherouvim.com/mod_expires-and-cache-killers/
http://httpd.apache.org/docs/1.3/mod/mod_expires.html
http://www.david-guerrero.com/papers/squid/squid.htm
http://linuxreviews.org/webdesign/602_Apache_mod_expire/
http://jeremy.zawodny.com/blog/archives/009272.html
Share or Bookmark This Post With :
|
|
Posted On October 16th, 2009
Hello from Russia! |
Leave a Reply
- dotProject – the Open Source Project Managem...
- The jQuery Form Plugin
- DocVerse has officially been acquired by Google
- HDGraph – a free tool for Windows to draw mu...
- RandomClass jQuery Plugin
- Paparazzi – a small utility for Mac OS X to ...
- Blocking SPAM using Postfix header_checks and Spam...
- Facebook, Paypal team up for virtual goods payment
- Opera Mini – the next generation mobile brow...
- XML/SWF Charts – powerful tool to create att...
- Send emails using PHPMailer an...
- Firefox Addons Essential for S...
- Free SEO Tools From SEOMoz.org...
- URL Rewriting for PHP Web Appl...
- Multiple Instances of Tomcat w...
- Apache 2.x + Tomcat 4.x + Load...
- Pagination in JSP/Java
- PHP – Mysql Open Source ...
- java.lang.OutOfMemoryError: Ja...
- HOW TO Subversion+Apache on Fe...





