I have the following added to my httpd.conf file:
 
# (Apache::Sandwich)
# Add directory custom "header"
<Location /web/httpd/htdocs/elterry>
  SetHandler    perl-script
  PerlHandler   Apache::Sandwich
  PerlSetVar HEADER "/my_header.html"
</Location>
 
Here are my "html" files:
 
my_header.html:
<html>
<head>
<title>System Wide</title>
</head>
<body>
<p />I am the header.
 
Index.html:
<hr>
<p />This is just a thought.
<p />But something should be above me.
</body>
</html>
The header doesn't show up when I go to the index page. What's up?
 
Eric 

Reply via email to