Does it differ between browsers?
Does the HTTP protocol dictate it?
|
feedback
|
|
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:
UPDATE DEC 2011: This is a popular question, and as the original research is over 5 years old I'll try to keep it up to date: As of Dec 2011, the advice still stands, as IE8's maximum URL length is 2083 chars, and it seems IE9 has a similar limit. | |||||||||||||||||||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
There is really no universal maximum URL length. The max length is determined only by what the client browser chooses to support, which varies widely. The 2,083 limit is only present in Internet Explorer (all versions up to 7.0). The max length in Firefox and Safari seems to be unlimited, although instability occurs with URLs reaching around 65,000 characters. Opera seems to have no max URL length whatsoever, and doesn't suffer instability at extremely long lengths. | |||||
feedback
|
|
Sitemaps protocol which is a way for webmasters to inform search engines about pages on their sites (also used by Google in Webmaster Tools) supports URLs with less than 2048 characters. So if you are planning to use this feature for Search Engine Optimization take this into account. | |||
|
feedback
|
|
from link text "Maximum URL length is 2,083 characters in Internet Explorer" A have problems with IE and urls longer than that. Firefox seems to work fine with >4k chars. | |||||||||||||
feedback
|
|
I just ran into the same issue, but for me IE8 worked with up to 4K characters. After that it started throwing error 414 - URI too long. | |||
|
feedback
|