我尝试使用以下代码将我的网站从www.example.com重定向到example.com但我收到500错误。
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect from WWW" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www.example.com$" />
</conditions>
<action type="Redirect" url="http://example.com/{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
请您告诉我我的代码有什么问题吗?
答案 0 :(得分:1)
您的DNS服务器设置是否解析example.com,没有www ???
这可能是你的问题