我的 MVC4 应用程序托管在 Azure(共享网站)上,并且在 exaple.com 上运行良好。
我想将 www.example.com 重定向到 example.com,但是如果在 www.example.com 访问它会报告 404 错误。
我应该添加什么,这是解决这个问题的正确方法吗?
我不认为这是 DNS 问题,因为我在serverfault上问过它。
我试图通过 Web.config 重定向:
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="WWW Rewrite" stopProcessing="true" enabled="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www[.](.+)" />
</conditions>
<action type="Redirect" url="http://{C:1}/{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
但它不起作用。