일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 일본여행
- largelanguagemodels
- 오블완
- Kakao API Address
- 초딩수학
- MSSQL
- 블록코딩
- 썸머노트
- .csv
- httpclient timeout
- MYSQL
- PromptEngineering
- 중학생코딩
- upbit
- 한글깨짐
- swift 화면전환
- 아이코딩습관
- 중1코딩
- cc챔피언
- league of legends
- Android
- Aspose.cells
- 코딩입문
- 엔트리
- MS-SQL
- ASP.NET MVC
- python
- chart.js
- Excel
- AIoptimization
Archives
- Today
- Total
DBA
HTTP Error 404.15 - Not Found 쿼리 문자열이 너무 긴 요청을 거부하도록 요청 필터링 모듈이 구성되어 있습니다. 본문
[3] Development/MVC(ASP.NET with C#)
HTTP Error 404.15 - Not Found 쿼리 문자열이 너무 긴 요청을 거부하도록 요청 필터링 모듈이 구성되어 있습니다.
코볼 2020. 5. 14. 15:45728x90
반응형
SMALL
Web.config 에 ( maxQueryStringLength, maxQueryString ) 추가 또는 해당 값 ( maxQueryStringLength, maxQueryString ) 을 늘려 주면 된다.
<system.web>
<httpRuntime maxQueryStringLength="204800" maxRequestLength="409600" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="30000000" maxUrl="260" maxQueryString="204800" />
</requestFiltering>
</security>
</system.webServer>
httpRuntime 의 maxQueryStringLength 와
requestLimits 의 maxQueryString 값을 늘려 준다.
출처 : https://vitalholic.tistory.com/363
728x90
반응형
LIST
Comments