目前,http://example.com
和http://www.example.com
都可以正常使用。但是,我们需要将所有http://example.com
个网址重定向到http://www.example.com
。
该网站是一个ASP.net MVC4网站。为了完成它,我在System.webserver下添加了以下web.config条目。
<httpRedirect enabled="true" destination="http://www.example.com" />
然而,它导致了重定向循环。能帮我完成这件事吗?
答案 0 :(得分:4)
尝试将此添加到web.config。您的IIS中必须安装rewrite module。 请阅读this Article以获得更好的解释。
<rewrite>
<rules>
<rule name="Redirect domain.com to www" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions>
<add input="{HTTP_HOST}" pattern="domain.com" />
</conditions>
<action type="Redirect" url="http://www.domain.com/{R:0}" />
</rule>
</rules>
</rewrite>