Saturday, 14 May 2016

regex - Url Rewrite - regular Expression in IIS

i have a url
www.example.com/test.aspx?n=quick-brown-fox-jumps-over-the--lazy-dog-2890



i want to display it as
www.example.com/test/quick-brown-fox-jumps-over-the--lazy-dog/2890



using URL Rewrite regular expression



please help

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...