Re: Configuring mod-Perl to handle only some file types

2012-08-08 Thread Ekki Plicht (DF4OR)
html#filesmatch For example, a for . htm or .html Files would look like (untested): PerlRequire /var/www/mysite/cgi-bin/my_modperl_module.pm SetHandler perl-script PerlResponseHandler my_modperl_module # which contains a sub handler {...}; Cheers, Ekki &g

Re: Configuring mod-Perl to handle only some file types

2012-08-08 Thread Ekki Plicht (DF4OR)
On Wed, Aug 8, 2012 at 8:13 PM, wrote: > Hello, > > I have a mod_perl program that is written to handle URL's that > name either a directory or *.html type files. All other types > I want Apache to just do its regular thing (e.g., serve image > type files, or .doc, .pdf, .js, .css, etc.) > What's