我正在尝试重写我网站的所有网址。例如,如果用户键入 mysite.com/index.aspx,它会将顶部的 url 更改为 www.mysite.com/index.aspx
有什么建议么?
我正在尝试重写我网站的所有网址。例如,如果用户键入 mysite.com/index.aspx,它会将顶部的 url 更改为 www.mysite.com/index.aspx
有什么建议么?
试试这个
<rewrite>
<rules>
<rule name="Enforce canonical hostname" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" negate="true" pattern="^www\.mysite\.com$" />
</conditions>
<action type="Redirect" url="http://www.mysite.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>