윈도우 2008서버 기준으로 


화일은 존재하고 경로도 맞음에도 불구하고 다운로드시 404에러가 발생한다면....


Web.Config화일에서 다운로드할 확장자를 아래와 같이 추가해보자...

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <security>
      <requestFiltering>
        <fileExtensions allowUnlisted="true" >
          <remove fileExtension=".ZIP" />
          <add fileExtension=".ZIP" allowed="true"/>

        </fileExtensions>
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>

 출처 : 구글검색 후 개인블로그에서 봄 ( http://lynxeyed.blogspot.kr/2011/07/iis-7-file-download-404-error.html )



Posted by bha :