I have some possible urls:
www.domain.com/buy-tickets/eventname/?orderid=12&userid=40
should be rewritten to:
www.domain.com/order.aspx?name=eventname&orderid=12&userid=40
www.domain.com/buy-tickets/eventname/?payment=s&token=54654-56456&userid=40
should be rewritten to:
www.domain.com/order.aspx?name=eventname&token=54654-56456&payment=s&userid=40
As you can see, the first part of the url always consists of /buy-tickets (redirected to order.aspx)
and /eventname, redirected as ?name=eventname
BUT the thing is that the parameters AFTER /eventname/ may vary. sometimes its orderid and userid,
the other time its: orderid and userid and token.
And have more variations, so with the parameters AFTER /eventname/ I just want to pass them as they are in the URL...
How can I do that?