Posted on: 3/31/2015 3:52:53 PM | Views : 678

Hello,
I am trying to create a rewrite rule to ensure that any calls to http://www.sampledomain.co.uk/blog.aspx?postid=96 are redirected to http://www.sampledomain.co.uk/blog/blog_title. I am using VB.NET and have attempted to create a rewrite in the web.config file as follows, but this unfortunately doesn't work:
<rule name="RewriteUserFriendlyProductPage" stopProcessing="true"> <match url="^blog/([0-9]+)?$" /> <action type="Rewrite" url="blog.aspx?postid={R:1}" appendQueryString="true" /> </rule>
Does anyone have ideas of how I could achieve the above outcome please?

Go to the complete details ...