in reply to Re: Re: Alternatives to PerlTransHandler?
in thread Alternatives to PerlTransHandler?

If the goal for him was just to have one program handle all of these .html URLs, it's easy to do that with a simple httpd.conf thing like this:
<Files *.html> # or whatever SetHandler perl-script PerlHandler My::Secret::Handler </Files>
What you are doing is considerably more complex, and makes sense to do in a TransHandler.