> One last question (which may be creaping OT)...suppose > I set a <FilesMatch> directive to match .phtml to call > my handler for TT. Is it possible (well, it probably > is, but is the design sound?) to consider this handler > a "main" handler and then pass the request off to a > different handler depending on some other parameter.
Somewhere, you have to define which requests go to which handler. You can do that in your httpd.conf file, or you can do it in your code. It doesn't really matter which, except in terms of what is easiest for you to develop and maintain. Your approach sounds fine. You might also look at Apache::Dispatch, which tries to automate some of this. - Perrin
