We have a JSP application that uses a url like this...
https://subdomain.domain.com/project/page.jsp?a=param1&b=param2
This is a vendor product and since I am not allowed to just add JAX-RS throw a PathParam and be done with it, I have to figure and Apache rule (I am using IHS technically) or something to translate it into...
https://othersubdomain.domain.com/param1/param2
What is the best way to handle this without editing the webapp?
Sorry in advance if this is a repeat somewhere.