https://internet.dev.local/ KYR url (末尾に / なし) と正確に一致させ、 https://internet.dev.local/ KYR/ (/あり) にリダイレクトまたは書き換えたいと思います。
次のルールを試していますが、 https://internet.dev.local/KYR/Admin/Form/Default.aspx?signup=falseなどの他の URL にも一致しますが、これは間違っています。
どうすればこれを達成できますか?
<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>