且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

IIS URL 重写不适用于查询字符串

更新时间:2023-02-26 11:37:58

当然,我发布后很快就想通了.这样做了,但不确定为什么精确匹配不起作用.

Of course I figured it out soon after I posted. This does it, not really sure why the exactmatch wasn't working though.

<rule name="Node17" stopProcessing="true">
    <match url=".*" />
<conditions>
    <add input="{QUERY_STRING}" pattern="q=node/17" />
</conditions>
<action type="Redirect" url="http://www.site.com" appendQueryString="False" />
</rule>