I have a question regarding mod_jk of Apache.
I am writing a JkMount sentence which redirect a URL that contains a question mark to a worker.
The syntax is something like:
JkMount /jmx-console/?configuration worker-tradeservice-configuration
However, the question mark seems need to be escaped. I don't know how to represent it in the mod_jk syntax.
I tried:
JkMount /jmx-console/\?configuration myworker
JkMount /jmx-console/\?configuration myworker
JkMount /jmx-console/*configuration myworker
And all of them don't work.
Can anyone tell me how to solve this?
Many thanks.