Copy Code code as follows:
Request-uri Too Large
The requested URL ' s length exceeds the capacity limit for this server.
The reason for this request-uri Too Large problem mentioned above is as follows:
The Apache error is that the length of the URL exceeds the limit. The length of the URL is limited by the browser and the server, the common IE is 2083,firefox is 65,536 (measured 8182), opera is 4050, Netscape is 8192, and so on. The limit for local Apache servers is 8192.
In addition, the HTTP protocol is said to be unrestricted URL length? Using a browser to send a GET request is limited by the length of the browser URL, and a GET request that does not use the browser is also limited by the server side. The specific limit length can be configured according to the server's processing power.
The HTTP protocol can transmit data in large quantities through udp,post requests because it is divided into multiple UDP packets and read through the stream.
So the wrong way is to reduce the URL address to the browser and the server can be received or replaced by a POST request ...
It is strongly recommended that you do not use get!