重定向不重定向

时间:2014-03-13 20:29:51

标签: asp.net asp.net-mvc

我在<system.webServer>下的Web.config中有一个条目:

<rewrite>
  <rules>
    <rule name="Redirect to HTTPS" stopProcessing="true">
      <match url="(.mydomain.com*)" />
      <conditions>
        <add input="{HTTPS}" pattern="^OFF$" />
      </conditions>
      <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
    </rule>
  </rules>
</rewrite>

我希望http://www.mydomain.com的请求会被重定向到https://www.mydomain.com。但是,这种情况并没有发生。

规则格式有问题吗?还必须做其他事情来启用重定向吗?

这是在IIS 8下的Windows 2012计算机上运行.RewriteModule列在该网站的模块下。

2 个答案:

答案 0 :(得分:1)

确保安装了IIS重写模块(可使用Web Platform Installer安装。然后,您可以使用IIS管理器see, configure, and test the rewrite rules

编辑:我注意到你说你验证了模块已安装。凉!最有可能的是规则本身的问题。使用IIS提供的测试工具验证它是否按预期方式工作。

编辑2:我认为您的规则存在的问题是您的匹配网址语法。根据{{​​3}},默认语法是ECMAScript正则表达式。这意味着如果您想匹配.字符,则必须使用\.

答案 1 :(得分:1)

删除"(.mydomain.com*)"并将其设置为"(.*)"

<rule name="HTTP to HTTPS redirect" stopProcessing="true">
  <match url="(.*)" />
    <conditions>
      <add input="{HTTPS}" pattern="off" ignoreCase="true" />
    </conditions>
  <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>