[warn] /test.cgi did not send an HTTP header おそらくModPerl::Registry環境でしかでないのだけど、動的コンテンツに対して、"If-Modified-Since"を送ると、error_logに、 [warn] /test.cgi did not send an HTTP header というのが、記録される。直接的な害はないことは確認済み。 再現させるには、 #!/usr/bin/perl use strict; use warnings; print "Content-Type: text/html\n\n"; print "x" x 1000; という簡単なCGIを書いて、 #!/usr/bin/perl use strict; use warnings; use LWP::UserAgent; my $url = "http: