|
LayoutFooter
Description
LayoutFooter is a form of the LayoutFooter Directive Family that
inserts data at the end of the outbound stream
after the document is displayed. LayoutFooter can be used in three
different ways (the first two examples cache the content in the Apache
process).
Example 1 (straight text)
<VirtualHost www.foo.com:80>
LayoutFooter "Copyright Foobar, 2000"
</VirtualHost>
Example 2 (cache'd HTML document)
<VirtualHost www.foo.com:80>
LayoutFooter /usr/local/apache/htdocs/footer.html
</VirtualHost>
Example 3 (Dynamic URI)
<VirtualHost www.foo.com:80>
LayoutFooter /Footer.cgi
</VirtualHost>
Known Problems
None currently known.
|