在IIS 8上创建重定向规则不起作用

时间:2018-09-27 13:43:23

标签: url-redirection iis-8

我正在尝试为应用程序创建重定向规则。目前,该规则如下所示,位于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。

0 个答案:

没有答案