如何使用IIS7中的URL重写强制将example.com重定向到www.example.com?什么样的规则应该进入web.config?谢谢。
这是Microsoft的
URL Rewrite Module 2.0示例,将* .fabrikam.com重定向到www.fabrikam.com
原文链接:https://www.f2er.com/xml/293242.html<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Add www" patternSyntax="Wildcard" stopProcessing="true"> <match url="*" /> <conditions> <add input="{HTTP_HOST}" pattern="www.fabrikam.com" negate="true" /> </conditions> <action type="Redirect" url="http://www.fabrikam.com/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>