Hello everybody! Can somebody enlight me what this code in mod_rewrite.c is good for?
static int hook_fixup(request_rec *r)
{
[...]
/* we shouldn't do anything in subrequests */
if (r->main != NULL) {
return DECLINED;
}
It took me days to track down what is is not good for
(see bug http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21814 ).
I suggest to disarm this section if not removing it from mod_rewrite.c...
Any hints?
Robert
