Apparently it works :D
However, it's very strange the headers that "my" server sends! Now
there is a Last-Modified header that points to July?!?!?
Also the ETAG tag is still there ...
Anyway, it seems that effectively the two noisy tags are removed, and
that the OK status is sent (if not i will di
> 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-con
Hi, i'm trying to avoid the "304 Not Modified" status when testing my
updated handlers in localhost. From documentation, i read that phase
PerlHeaderParserHandler is the most adequate to launch handlers when
in Directories scopes to manage HTTP response headers.
My apache directive
---