web.config配置错误 - 无法识别的元素

时间:2016-11-14 11:54:13

标签: iis web-config

我们首次加载页面时出现服务器配置错误。但是,当我们刷新页面加载时很好。可以通过在IIS中刷新/重新启动服务器来复制它。第一次加载我们得到错误,后续请求没问题。

  

描述:处理a期间发生错误   服务此请求所需的配置文件。请查看   以下具体错误详细信息并修改您的配置文件   适当。

     

分析器错误消息:无法识别的元素。

这发生在我们的web.config

的第2行
<?xml version="1.0" encoding="utf-8"?> 
<configuration>   
    <system.webServer>
        <rewrite>
            <rules>
                <!--Redirect selected traffic to index -->
                <rule name="Index Rule" stopProcessing="true">
                    <match url=".*" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="/index.html" appendQueryString="true" />
                </rule>
            </rules>
        </rewrite>   
    </system.webServer> 
</configuration>

的信息:

  • Windows Server 2012 R2标准版
  • Microsoft .NET Framework版本:4.0.30319
  • ASP.NET版本:4.6.1069.1

0 个答案:

没有答案