我正在尝试为应用程序创建重定向规则。目前,该规则如下所示,位于web.config文件中
<rule name="redirectRule" stopProcessing="true">
<match url="^(https|http)://college\.accounting\.com$" />
<action type="Redirect" url="https://college.accounting.com/Login"/>
</rule>
当我键入https://college.accounting.com时,我没有被重定向到https://college.accounting.com/Login。我的规则有什么问题?客户已经熟悉https://college.accounting.com,因此我试图防止他们在最后输入/ Login。