我的 url 的 URL 重写规则
我需要在 IIS7 中编写一些巧妙的正则表达式来将流量从一个站点重定向到另一个站点,页面结构相似,但信息需要重新编写。
这是一个示例:
http://www.mysite.com/manufacturers/Name_of_Manufacturer_6828/Name_OF_Product_43146.htm
需要按以下方式构造
http://www.newsite.co.in/free-msds-download/name-of-manufacturer/name-of-product/
以下是需要更改的内容:
- 只允许使用字母、数字和连字符。
- 将“_”更改为“-”。
- 直接删除制造商名称后面和“/”之前的“_NUMBER”。
- 直接删除产品名称后面和“.htm”之前的“_NUMBER”。
- 删除“.htm”并替换为“/”。
需要写入以下代码作为永久 301 重定向:
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:
- Only Alpha, Numeric and hyphen's allowed.
- Change '_' to '-'.
- Remove the '_NUMBER' directly after the manufacturer name and before the '/'.
- Remove the '_NUMBER' directly after the product name and before the '.htm'.
- Remove the '.htm' and replace with a '/'.
It needs writing into the code below please as a permanent 301 redirect:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里 http://learn. iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/ 这里有一些关于如何执行此操作的好信息以及示例。
Have a look here http://learn.iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/ there is some good information on how to do it here as well as examples.