URL Rewritting rule
-
I need some clever regular expression writing in IIS7 to redirect traffic from one site to another, the pages are similar in structure but information needs re-writing. Here's an example: http://www.mysite.com/manufacturers/Name\_of\_Manufacturer\_6828/Name\_OF\_Product\_43146.htm needs to be structured as the following http://www.newsite.co.in/free-msds-download/name-of-manufacturer/name-of-product/ Here's what needs changing: 1). Only Alpha, Numeric and hyphen's allowed. 2). Change '_' to '-'. 3). Remove the '_NUMBER' directly after the manufacturer name and before the '/'. 4). Remove the '_NUMBER' directly after the product name and before the '.htm'. 5). Remove the '.htm' and replace with a '/'. It needs writing into the code below please as a permanent 301 redirect:
-
I need some clever regular expression writing in IIS7 to redirect traffic from one site to another, the pages are similar in structure but information needs re-writing. Here's an example: http://www.mysite.com/manufacturers/Name\_of\_Manufacturer\_6828/Name\_OF\_Product\_43146.htm needs to be structured as the following http://www.newsite.co.in/free-msds-download/name-of-manufacturer/name-of-product/ Here's what needs changing: 1). Only Alpha, Numeric and hyphen's allowed. 2). Change '_' to '-'. 3). Remove the '_NUMBER' directly after the manufacturer name and before the '/'. 4). Remove the '_NUMBER' directly after the product name and before the '.htm'. 5). Remove the '.htm' and replace with a '/'. It needs writing into the code below please as a permanent 301 redirect:
Ask this question in the Regular Expression Forum http://www.codeproject.com/Forums/1580841/Regular-Expressions.aspx[^]
Frazzle the name say's it all