프로그래밍/_개발 기타
403 - 사용 권한 없음: 액세스가 거부되었습니다. 오류 해결법
Doonee
2013. 9. 26. 18:40
반응형
윈도7의 경우 C:\Windows\System32\inetsrv\config 경로에서 applicationHost.config 파일을 연다.
아래의 ipSecurity allowUnlisted 설정 부분을 true로 변경한다.
<location path="eduadmin.lawnb.com"> <system.webServer> <asp enableParentPaths="false" /> <security> <ipSecurity allowUnlisted="true" /> </security> </system.webServer> <system.ftpServer> <security> <ipSecurity enableReverseDns="false" /> </security> </system.ftpServer> </location> |