我的重定向规则有问题。我希望我的页面有“www”前缀。它适用于某些页面,而在其他页面上它根本不做任何事情。这是我的规则:
<rule name="WWW Rewrite" enabled="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" negate="true"
pattern="^www\.([.a-zA-Z0-9]+)$" />
</conditions>
<action type="Redirect" url="http://www.{HTTP_HOST}/{R:0}"
appendQueryString="true" redirectType="Permanent" />
</rule>
任何帮助将不胜感激!