在IIS 8上将非www重定向到www

时间:2013-11-08 12:39:38

标签: asp.net iis redirect iis-8

我在IIS 8中的默认网站下添加了一个ASP.NET网站作为应用程序。没有www的网站被重定向到Apache HTTP Server测试页面。所以我试图将非www重定向到我的网站的www,但这没有发生。

  <rewrite>
        <rules>
            <rule name="redirect non-www to www" patternSyntax="Wildcard" stopProcessing="true">
                <match url="*" />
                <action type="Redirect" url="http://www.abcdefgh.in/{R:0}" />
                <conditions>
                    <add input="{HTTP_HOST}" pattern="abcdefgh.in" />
                </conditions>
            </rule>
 </rewrite>

是不是因为,该网站被添加为默认网站下的应用程序?还有其他必须启用的选项吗?我刚开始学习ASP.NET和IIS。任何帮助都会非常有用。谢谢。

0 个答案:

没有答案