413 Entity Too Large, 414 Request-URI Too Large
1 2 3 4 5 6 7 8 9 10 11 |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html> <head> <title>414 Request-URI Too Large</title> </head> <body> <h1>Request-URI Too Large</h1> <p>The requested URL's length exceeds the capacity limit for this server.<br/></p> </body> </html> |
위와 같이 Request 길이가 초과되어 오류가 발생할 때가 있다. Apache 문서에 따르면 8192 byte, 보통은 4000 byte 내로 사용할 것은 권고하고 있고, 그래서 IE의 경우에 2048 byte 의 길이로 request 길이를 제한한다. 만약 디폴트 설정을 변경하려면, httpd.h 파일의 DEFAULT_LIMIT_REQUEST_LINE… 더 보기 »413 Entity Too Large, 414 Request-URI Too Large