vote up 12 vote down star
2

Does it differ between browsers?

Does the HTTP protocol dictate it?

flag

6 Answers

vote up 32 vote down check

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.

link|flag
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
As this is the first answer, I've edited it show that – Paul Dixon Jan 6 '09 at 17:55
This is the most complete answer, so thanks! – Sander Versluys Jan 6 '09 at 18:10
Nice links, thanks! – JG Sep 18 at 14:39
vote up 0 vote down

Maximum length of URL -2k Maximum length of domain -255 characters

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 8 vote down

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|flag
vote up 0 vote down

Just Google it (first result):

http://www.google.ca/search?rlz=1C1CHMP_enCA291CA305&ie=UTF-8&q=maximum+length+of+a+url

link|flag
I don't like this type of answer. Just list the answer, then link to the source or Google if you must. – John Sheehan Jan 6 '09 at 16:23
2  
I don't like questions that are easily answered by a simple search in a search engine. – Crossbrowser Jan 6 '09 at 16:25
1  
Then ignore them or downvote them. – John Sheehan Jan 6 '09 at 16:26
3  
The trouble with an answer like this is that StackOverflow is well indexed by Google, and by tomorrow a search for "maximum+length+of+a+url" will include this page as a result, creating a somewhat circular answer! – Paul Dixon Jan 6 '09 at 16:32
3  
That won't teach them to Google for an answer before asking. – Crossbrowser Jan 6 '09 at 16:32
show 2 more comments

Your Answer

Get an OpenID
or

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