我使用IIS 管理器中的URL 重写部分为我的网站创建一个redirect 301
并将搜索引擎和用户DomainName.com
从www.DomainName.com
. 在 IIS 中为此目的创建规则后,它会在web.config
文件中生成以下代码:
<rewrite>
<rules>
<rule name="redirect 301" stopProcessing="true">
<match url="^DomainName\.com.*" />
<action type="Redirect" url="www.{R:0}" />
</rule>
</rules>
</rewrite>
但这对我不起作用。
我的代码中是否有任何错误,或者我必须使用另一种方法来执行此操作?