I have a directory of images use for navigation purposes, but when
generating dynamic pages with:
####################
sub handler {
$r = shift;
...
$r->header_out("Pragma","no-cache");
$r->header_out("Cache-control","no-cache");
$r->no_cache(1);
$r->send_http_header;
page to follow
}
####################
It immediately expires the navigation images as well. A big performance
drag. Does there need to be some type of handler sniffing a navigation
image directory to set some other expiration date other than 'now'?
Thanks for any help,
Craig Bullock