我有共享托管服务器,它运行IIS 7.5。
我在web.config中编写了这段代码。
<system.webServer>
<rewrite>
<rules>
<rule name="AddWWWprefix" >
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^abc\.com" />
</conditions>
<action type="Redirect" url="http://www.abc.com/{R:1}" redirectType="Permanent" />
</rule>
<rule name="RemoveWWWprefix" >
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.abc\.com" />
</conditions>
<action type="Redirect" url="http://abc.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
我收到了以下错误。
HTTP错误500.19 - 内部服务器错误 无法访问请求的页面,因为页面的相关配置数据无效
错误代码:错误代码0x8007000d
配置来源 -1: 0:
我知道这可能会有一些小错误。有人可以帮帮我吗? 感谢。