On Wed, Jul 31, 2002 at 03:07:01PM +0530, Sandip Bhattacharya wrote: > > IIS seems to have support per directory based custom HTTP header. So for > all images in a directory for images, you can add a "Expires: 0" HTTP > header to expire the image in the cache immediately. I wonder how Apache > could be made to do that. But then LIH would be a better place to ask that > question. :)
LoadModule expires_module /path/to/mod_expires.so <Directory /some/dir> ExpiresActive On ExpiresDefault A0 # To expire every page after 0 seconds :-) </Directory> Binand ------------------------------------------------------- This sf.net email is sponsored by: Dice - The leading online job board for high-tech professionals. Search and apply for tech jobs today! http://seeker.dice.com/seeker.epl?rel_code=31 _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
