IIS重写正则表达式规则

时间:2011-05-04 18:57:02

标签: regex iis-7 url-rewriting

我正在使用IIS 7的URL Rewrite模块。如果网址匹配/news/<anything but the word "article">

,我有一条规则,我想说
<match url="news/([^/]+)"/>

我怎样才能实现这个目标?

感谢 higgsy

1 个答案:

答案 0 :(得分:2)

尝试添加否定前瞻:

news/(?!article)([^/]+)

(?!...)部分说“如果......匹配则失败”(但不要使用字符)。