Stefan Reitshamer wrote:
>
> Hi,
>
> I'd like to do server-side includes in my Apache::ASP file.
> How do I write my httpd.conf?
> I tried
>
> <Location /perl/>
> AddHandler server-parsed .asp
> AddHandler perl-script .asp
> PerlHandler Apache::ASP
> </Location>
You can see an online demo of Apache::ASP supporting
full SSI via filtering with Apache::Filter at:
http://www.nodeworks.com/asp/eg/ssi_filter.ssi
Here's the config:
# .ssi for full ssi support, with Apache::Filter
<Files ~ (\.ssi)>
SetHandler perl-script
PerlHandler Apache::ASP Apache::SSI
PerlSetVar Filter On
</Files>
-- Joshua
_________________________________________________________________
Joshua Chamas Chamas Enterprises Inc.
NodeWorks >> free web link monitoring Huntington Beach, CA USA
http://www.nodeworks.com 1-714-625-4051