2016-08-23 5 views
1

오늘 Plesk 12.0을 12.5로 업그레이드하고 웹 사이트에 연결할 수없는 하드 오류가 발생했습니다. 나는 다음과 같은 오류 메시지가 서버의 웹 사이트를 열 경우내부 서버 오류 500.19 Plesk/IIS

는 : enter image description here

은 키 속성 유형 "mimeType를"의 두 번째 항목은 .woff 추가 할 캔트 그것을 말한다.

누군가가 저를 도와 줄 수 있습니까?

업데이트 오류를 호출 한 파일의 항목을 삭제했으며 이제 다시 작동합니다. 내가 스스로에게 묻는 것은이 오류를 삭제하는 것이 올바른 방법 이었는가? 그 때문에 미래에 더 이상의 오류가 발생하기를 원하지 마십시오!

답변

1
이처럼 설정을 변경

:

<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> 
관련 문제