web.config 확장자 추가(허용)

0 투표
iis에서 woff2 확장자 파일이 다운로드 되지 않는데요.

web.config 확장자 추가하는 방법 알려주세요.

1 답변

0 투표
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.7.2"/>
    <httpRuntime targetFramework="4.7.2"/>
  </system.web>
  <system.webServer>
    <staticContent>
      <remove fileExtension=".woff" />
      <mimeMap fileExtension=".woff" mimeType="font/x-woff" />
      <remove fileExtension=".woff2" />
      <mimeMap fileExtension=".woff2" mimeType="font/x-woff2" />
    </staticContent>
  </system.webServer>
</configuration>

staticContent 항목에 mimeMap fileExtension 을 추가해 보세요.

구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...