标签: regex iis-7 url-rewriting
我正在使用IIS 7的URL Rewrite模块。如果网址匹配/news/<anything but the word "article">
/news/<anything but the word "article">
<match url="news/([^/]+)"/>
我怎样才能实现这个目标?
感谢 higgsy
答案 0 :(得分:2)
尝试添加否定前瞻:
news/(?!article)([^/]+)
(?!...)部分说“如果......匹配则失败”(但不要使用字符)。