> PerlHeaderParserHandler Blogum::BlogumHeaders::nocache
> $r->err_headers_out->add('Pragma' => "no-cache");
> $r->err_headers_out->add('Cache-control' => "max-age=0");
> $r->err_headers_out->add('Cache-control' => "no-cache");
> $r->err_headers_out->add('Cache-control' => "must-revalidate");
> $r->err_headers_out->add('Expires' => "-1");
> return Apache2::Const::DECLINED;
in this case, it might be easier to remove the cache headers from the
request on the way in. so, try something like
$r->headers_in->unset('If-Modified-Since');
$r->headers_in->unset('If-None-Match');
so that the server isn't aware of any caching on the client (as opposed to
asking the client to behave in such and such a way).
HTH
--Geoff