内部服务器错误 500.19 Plesk / IIS

Internal Server Error 500.19 Plesk / IIS

我今天将 Plesk 12.0 升级到 12.5,遇到了一个硬错误,导致我的网站无法访问。

如果我在服务器上打开网站,我会收到以下错误消息:

它说无法添加具有键属性 .woff 的 "mimeType" 类型的第二个条目。

谁能帮我解决这个错误?

更新 我删除了调用错误的文件中的条目,现在它又可以工作了。我在问自己:删除此错误的正确方法吗?不希望以后再因此而出现任何错误!

像这样更改您的配置:

<system.webServer>
    <staticContent>
      <remove fileExtension=".woff" />
      <remove fileExtension=".woff2" />
      <remove fileExtension=".eot" />
      <remove fileExtension=".ttf" />
      <remove fileExtension=".svg" />
      <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
      <mimeMap fileExtension=".ttf" mimeType="application/font-sfnt" />
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
      <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
      <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
    </staticContent>
</system.webServer>