check out:
http://www.apache.org/docs-2.0/mod/core.html#filesmatch
make sure you also see the "see also". ;-)
by the way, this is standard apache configuration stuff that
has nothing to do with mod_perl.
--
___cliff [EMAIL PROTECTED]http://www.genwax.com/
Surat Singh Bhati wrote:
> Hi,
> I want to do configure my mod_perl as:
>
> "All the files having extension .cgi should be run as
> standard CGI, except *fixname*.cgi , if any file match
> *fixname*.pl , it should run as mod_perl. "
>
> Is it possible to files having the same ext , but depend
> on partial file name , apache consider them differently,
> files may be located any where not in a special directory.
>
> I wat to do something like:
>
> <Files *fixname*.cgi>
> SetHandler perl-script
> PerlHandler Apache::Registry
> PerlSendHeader On
> Options +ExecCGI
> </Files>
> AddHandler cgi-script .cgi
>
> Is it possible?
>
> Regards,
>
> -Surat Singh Bhati