What I am referring to is whether there is a limit to the number of characters a URL can contain, and what the value of that limit would be if there is.
What I am referring to is whether there is a limit to the number of characters a URL can contain, and what the value of that limit would be if there is.
According to RFC2616 - protocol HTTP1.1, sec3.2.1
There is no limit to that length. It depends exclusively on what each client and server support.
Nevertheless:
It is recommended that this length does not exceed 255 bytes , so that it is fully supported by old clients or proxies ,
The maximum length of the URL is variable, depending on the browser, for example in the famous Internet Explorer it is 2083 characters.
Here is the data:
Internet Explorer: 2,083 characters. Firefox: 65, 536 characters. Safari: 80,000 characters. Opera: 190,000 characters.
and per web server:
A little research doesn't hurt my friend.