我的 url 的 URL 重写规则

发布于 2024-12-03 20:22:36 字数 534 浏览 0 评论 0原文

我需要在 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/

以下是需要更改的内容:

  1. 只允许使用字母、数字和连字符。
  2. 将“_”更改为“-”。
  3. 直接删除制造商名称后面和“/”之前的“_NUMBER”。
  4. 直接删除产品名称后面和“.htm”之前的“_NUMBER”。
  5. 删除“.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:

  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:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪落纷纷 2024-12-10 20:22:36

看看这里 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文