Using IIS v8 and trying to create some SEO Friendly URL's
Current URL is as follows:
http://www.domain.com/equipment/flexible/technical.cfm?id=2&title=applications
Trying to create:
http://www.domain.com/equipment/flexible/2/applications
I have the following rule added within web.config - but doesnt seem to be working.
<rule name="Product Technical Details">
<match url="^/equipment/flexible/technical.cfm?([0-9]+)/([_0-9a-z-]+)" />
<action type="Rewrite" url="/equipment/flexible/technical.cfm?id={R:1}&title={R:2}" />
</rule>
Any ideas?
Thanks!