일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- largelanguagemodels
- 일본여행
- 업비트
- 썸머노트
- Oracle
- 오블완
- python
- swift 화면전환
- CSV
- Kakao API Address
- MYSQL
- MS-SQL
- .csv
- AIoptimization
- PromptEngineering
- Android
- Banker's rounding
- rounding
- Request.Form
- 초딩수학
- 나만의 상점
- 한글깨짐
- Excel
- Banker's
- Aspose.cells
- league of legends
- chart.js
- LEFT JOIN
- upbit
- MSSQL
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