rest - How use UrlRewriteFilter to use querystring? -


i trying use urlrewritefilter, but, i'm not getting create rule can turn this:

/bookmark-edit/1 

in this:

/bookmark-edit.jsp?id=1 

examples welcome!

thanks, luciano

do mean this?

<rule>     <from>^/bookmark-edit/(.*)$</from>     <to>/bookmark-edit.jsp?id=$1</to> </rule> 

Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -