Does it differ between browsers?
Does the HTTP protocol dictate it?
|
|
RFC 2616 (Hypertext Transfer Protocol HTTP/1.1) section 3.2.1 says
That's what the standards say. For the reality, see this research over at boutell.com to see what individual browser and server implementations will support. It's worth a read, but the executive summary is:
|
||||||||
|
|
|
Maximum length of URL -2k Maximum length of domain -255 characters |
||
|
|
|
|
The HTTP 1.1 specification says:
As mentioned by @Brian, the HTTP clients (e.g. browsers) may have their own limits, and HTTP servers will have different limits. |
||
|
|
|
|
The URI RFC (of which URLs are a subset) doesn't define a maximum length, however, it does recommend that the hostname part of the URI (if applicable) not exceed 255 characters in length:
As noted in other posts though, some browsers have a practical limitation on the length of a URL. |
||
|
|
|
|
http://www.boutell.com/newfaq/misc/urllength.html has their own answer based on empirical testing and research. The short answer is that going over 2048 characters makes IE unhappy and thus this is the limit you should use. See page for long answer. |
||
|
|
|
|
Just Google it (first result): http://www.google.ca/search?rlz=1C1CHMP_enCA291CA305&ie=UTF-8&q=maximum+length+of+a+url |
||||||||||||||||||
|