基本上,我已经将我的网站上的一些页面从example.htm更改为example.html。现在其中一些页面已在谷歌上市超过11年,我相信如果我使用301重定向,它对网站的搜索引擎优化是很好的。
我尝试配置web.config并将其直接放入网站的根目录(如下所示),但仍然没有成功。任何人都可以帮忙,或指出我出错的地方。
<!-- The system.webServer section is required for IIS7 compatability It is ignored by IIS6-->
<system.webServer>
<rewrite>
<rules>
<rule name="htm to html" stopProcessing="true">
<match url="(.+).htm$" />
<action type="Redirect" url="{R:1}.html" />
</rule>
</rules>
</rewrite>
</system.webServer>