Which is best or right one to use?
I have thousands of user directories, with a sub of admin for them to
configure their site.
>From the admin location I want to call the "config" (module e.g.
www.here.com/user/admin/config)
Can I write a <Location> with wildcards as <Location /*/admin/config> then
set my handler?
Or should I write a PerlTransHandler for the whole site looking for a match,
then setting the perlhandler from there? Something like
$r->url =~ m:^/(.+)/admin/config$/ || return DECLINED;
$r->handler("perl-handler");
$r->push_handlers(PerlHandler => \&new_handler);
return DECLINED;
TIA, [EMAIL PROTECTED]