I am trying to pass a parameter containing a forward slash to a controller, but it seems that the request is never making it to the controller when the forward slash is encoded. For example:
http://www.domain.org/controller/action/this%2Fthat/
returns a "Page not found" error page, while:
http://www.domain.org/controller/action/something-else/
works just fine.
I cannot debug this with ?debug_request=1 as it does not seem to work on this URL either. Seems like a bug... Any ideas?
Thanks,
David