I have an Apache server which gets a malformed HTTP Request (cookie size is very big). The server displays the Cookie value along with Bad Request. Is there a way to handle this?
I tried ErrorDocument directive, but that is not helping in this case.
|
I have an Apache server which gets a malformed HTTP Request (cookie size is very big). The server displays the Cookie value along with Bad Request. Is there a way to handle this? I tried ErrorDocument directive, but that is not helping in this case. |
|||||
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Look at this page it will explain it in detail. And it will also show you the exact same problem as you describe: Example with explanation: http://stevesouders.com/tests/cookie-max.php If you want to have custom error handling
should do the job if configured correctly in the Despite the possibility to fix this with this configuration option you should consider to do the following based on the reason why the error occured:
|
|||||||||||
|