I have the following rule:

<rule>
     <from>^/users/(.*)$</from>
     <to last="true">/users.do$1</to>
</rule>

And I want to match the following url:

http://localhost:8077/users/?elemsPerPage=10

and redirect it to:

http://localhost:8077/users.do?elemsPerPage=10

The problem is that when the url rewriter engine finds the "?" character in the url it does not return anything else in the $1 matched parameter. Neither it adds the parameters to the query string. Any ideas?

link|improve this question

1  
normally this is done by adding a qsa (query-string-append) to the rule, which unfortunately seems to be not supported. Maybe adding %{QUERY_STRING} can help? But that's not tested. – Karsten S. Feb 21 at 0:50
Thanks for the insight I've discovered that there is a way to achieve this using variables. For the query string the good one is %{query-string} – Fgblanch Feb 21 at 9:38
feedback

1 Answer

up vote 0 down vote accepted

Finally I've found a way to solve this:

Rule:

<rule>
     <from>^/users/$</from>
     <to last="true">/users.do?%{query-string}</to>
</rule>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.