up vote 303 down vote favorite
63
share [g+] share [fb]

Does it differ between browsers?

Does the HTTP protocol dictate it?

link|improve this question

feedback

8 Answers

up vote 386 down vote accepted

RFC 2616 (Hypertext Transfer Protocol HTTP/1.1) section 3.2.1 says

The HTTP protocol does not place any a priori limit on the length of
a URI. Servers MUST be able to handle the URI of any resource they serve, and SHOULD be able to handle URIs of unbounded length if they provide GET-based forms that could generate such URIs. A server SHOULD return 414 (Request-URI Too Long) status if a URI is longer than the server can handle (see section 10.4.15).

Note: Servers ought to be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations might not properly support these lengths.

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:

Extremely long URLs are usually a mistake. URLs over 2,000 characters will not work in the most popular web browser. Don't use them if you intend your site to work for the majority of Internet users.

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.

link|improve this answer
66  
For those who don't bother to read - the research concluded, that real world limit for URLs is about 2000 characters. – Rene Saarsoo Jan 6 '09 at 17:45
2  
As this is the first answer, I've edited it show that – Paul Dixon Jan 6 '09 at 17:55
1  
This is the most complete answer, so thanks! – Sander Versluys Jan 6 '09 at 18:10
2  
WARNING: The linked article at boutell.com is now nearly 5 years old. If max url lengths are important to you, you should do more research to determine if the reported limits are still accurate. – Dana the Sane May 30 '11 at 15:53
4  
In my testing, IE8 supports 4095 characters in the URL. – Phong Aug 17 '11 at 17:55
show 5 more comments
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.

link|improve this 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:

URI producers should use names that conform to the DNS syntax, even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.

As noted in other posts though, some browsers have a practical limitation on the length of a URL.

link|improve this answer
feedback

The HTTP 1.1 specification says:

URIs in HTTP can be represented in absolute form or relative to some
known base URI [11], depending upon the context of their use. The two
forms are differentiated by the fact that absolute URIs always begin
with a scheme name followed by a colon. For definitive information on
URL syntax and semantics, see "Uniform Resource Identifiers (URI): Generic Syntax and Semantics," RFC 2396 [42] (which replaces RFCs 1738 [4] and RFC 1808 [11]). This specification adopts the definitions of "URI-reference", "absoluteURI", "relativeURI", "port",
"host","abs_path", "rel_path", and "authority" from that
specification.

The HTTP protocol does not place any a priori limit on the length of
a URI. Servers MUST be able to handle the URI of any resource they serve, and SHOULD be able to handle URIs of unbounded length if they provide GET-based forms that could generate such URIs.*
A server SHOULD return 414 (Request-URI Too Long) status if a URI is longer than the server can handle (see section 10.4.15).

Note: Servers ought to be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations might not properly support these lengths.

As mentioned by @Brian, the HTTP clients (e.g. browsers) may have their own limits, and HTTP servers will have different limits.

link|improve this answer
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.

link|improve this answer
1  
If the instability is around 65k it is probably right there near 65535 (2^16 - 1). Maybe they loop through chars using short i? Just a thought. I wonder what URL they tested for 65k+ o_o;; – Garet Claborn Mar 18 '11 at 11:46
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.

link|improve this answer
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.

link|improve this answer
2  
What a strange number 2083 = 2048 + 35 ... – mP. May 31 '11 at 7:42
1  
when is ie not strange? – Pacerier Jul 24 '11 at 15:52
3  
@Pacerier, when it's not working.. :) – rlemon Sep 1 '11 at 20:56
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.