views:

69

answers:

0

In apache 2.2 / mod_perl2 I'd like to add a translation phase handler (PerlTransHandler) but have it run after mod_rewrite. In apache 1.3 this was done by controlling module load order. In apache 2.x the hook ordering is more flexible, however mod_perl2 seems to always insert itself first in that hook phase.

Looking at the Request Hooks section of the output of the server-info module, I see this:

Translate Name: 
-10 mod_perl.c 
00 mod_rewrite.c 
10 mod_alias.c 
10 mod_vhost_alias.c 
30 core.c

But would like to something like:

Translate Name: 
-10 mod_rewrite.c 
00 mod_perl.c 
10 mod_alias.c 
10 mod_vhost_alias.c 
30 core.c

Thanks!