PATH_INFO in Apache is eating the first part of the path. Why?
- by makenai
I'm writing a simple mod_perl handler that relies on $r-path_info() to do some request routing. However, I find that it's always eating the first part of PATH_INFO when mounted on root. Let's say that the handler just prints the value of $r-path_info:
<Location /TEST>
PerlHandler MyHandler
</Location>
Request: /TEST/123
Expected…