我想完全匹配https://internet.dev.local/ KYR url(不带 / 到结尾)并重定向或重写到https://internet.dev.local/ KYR/(带 /)。
我正在尝试以下规则,但它也匹配其他 URL,例如https://internet.dev.local/KYR/Admin/Form/Default.aspx?signup=false,这是错误的。
那么我该如何实现呢?
<rule name="Static redirect" patternSyntax="ExactMatch" stopProcessing="true">
<match url="https://internet.dev.local/KYR" negate="true" />
<conditions>
</conditions>
<action type="Redirect" url="/Login/?ReturnUrl=/Member/KYR/" redirectType="Permanent" />
</rule>