NAME

Apache::HttpEquiv - Implements HTML META_EQUIV tag parsing

SYNOPSIS

(add to an Apache C<.conf> file)

PerlModule Apache::HttpEquiv
PerlFixupHandler Apache::HttpEquiv

DESCRIPTION

Apache::HttpEquiv is a simple example of how to use the power of mod_perl to customise your Apache server.

e.g.

<HTML>
<HEAD><TITLE>My Away Page</TITLE>
<META-EQUIV="Expires" CONTENT="Wed, 31 Dec 1997 16:40:00 GMT">
<META-EQUIV="Set-Cookie" CONTENT="open=sesame">
</HTML>

will cause the following extra HTTP headers to be sent:

Expires: Wed, 31 Dec 1997 16:40:00 GMT
Set-Cookie: open=sesame

CONFIGURATION

This module needs mod_perl to be compiled with PERL_FIXUP.

When configuring mod_perl say:

perl Makefile.PL PERL_FIXUP=1

SEE ALSO

mod_perl, perl(1), Apache(3)

AUTHOR

Rob Hartill <robh@imdb.com>