301重定向,Windows服务器

时间:2013-11-19 18:16:06

标签: html windows redirect web http-status-code-301

基本上,我已经将我的网站上的一些页面从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>

0 个答案:

没有答案