我的重定向規則有問題。我想我的網頁將有「www」前綴。它可以在一些頁面上運行,而在其他頁面上則不會執行任何操作。這是我的規則:在IIS7上重寫無法正確使用「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>
任何幫助將不勝感激!
我錯了,是說你需要在Global.asax文件中實例化這個嗎? – TheGeekZn