ウェブサイトのすべての URL を書き直そうとしています。たとえば、ユーザーが mysite.com/index.aspx と入力すると、上部の URL が www.mysite.com/index.aspx に変更されます。
助言がありますか?
ウェブサイトのすべての URL を書き直そうとしています。たとえば、ユーザーが 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>