윈도우 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 )
'개발이야기 > C#' 카테고리의 다른 글
Environment.GetFolderPath (0) | 2015.05.22 |
---|---|
ClickOnce 배포시 에러 (0) | 2015.05.22 |
Visual Studio 2013 설치후 stdole.dll 서명에러 (0) | 2014.05.26 |
항상 헷갈렸었던 숫자 0 은 true or false (0) | 2013.09.03 |