I use asp.net C# and need a to make an URL rewrite rule that maps a long URL to a short url, and keep the dynamic URL parameter (guid):
Example:
The first URL (short) should be mapped / redirected to the long url below:
Short URL:
http://www.domain.com/campaign.aspx?guid=db7b1e74-f45a-4756-945f-33e812534c09
Long URL:
http://www.domain.com/templates/sections/user/misc/campaign/freemember.aspx?guid=db7b1e74-f45a-4756-945f-33e812534c09
The GUID parameter is dynamic created, so I cannot hard code that in the rewrite rule. Hope someone can help me creating this rewrite rule :)