I'm trying to figure out how to enable short URL's for images on the website using Application_BeginRequest.
Currently, to open an image I have to use full URL like this:
http://mywebsite.com/ViewImage.aspx?album=123&id=456
I want the images to be accessible using short URLs:
http://mywebsite.com/123/456
ViewImage.aspx retrieves images dynamically from the database.
Assuming I should be using RewritePath method. But how exactly?