关于URL最大长度限制的相关资料查证


Posted in PHP onDecember 23, 2014

在开发调试支付宝接口时,突然发现支付宝接口的URL很长,远远大于之前自己印象中的255个字符。赶紧搜索查证了一番,理解如下:

URL不能大于255bytes的说法确实存在,在RFC2616中提到:

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.

从上一点也可以看出,255bytes的说法也是为了兼容性考虑。实际上现代浏览器的限制如下:

Microsoft Internet Explorer (Browser) 

Microsoft states that the maximum length of a URL in Internet Explorer is 2,083 characters, with no more than 2,048 characters in the path portion of the URL. In my tests, attempts to use URLs longer than this produced a clear error message in Internet Explorer.
Firefox (Browser) 
After 65,536 characters, the location bar no longer displays the URL in Windows Firefox 1.5.x. However, longer URLs will work. I stopped testing after 100,000 characters.
Safari (Browser) 

At least 80,000 characters will work. I stopped testing after 80,000 characters.
Opera (Browser) 

At least 190,000 characters will work. I stopped testing after 190,000 characters. Opera 9 for Windows continued to display a fully editable, copyable and pasteable URL in the location bar even at 190,000 characters.
Apache (Server) 
My early attempts to measure the maximum URL length in web browsers bumped into a server URL length limit of approximately 4,000 characters, after which Apache produces a “413 Entity Too Large” error. I used the current up to date Apache build found in Red Hat Enterprise Linux 4. The official Apache documentation only mentions an 8,192-byte limit on an individual field in a request.
Microsoft Internet Information Server 
The default limit is 16,384 characters (yes, Microsoft's web server accepts longer URLs than Microsoft's web browser). This is configurable.
Perl HTTP::Daemon (Server) 

Up to 8,000 bytes will work. Those constructing web application servers with Perl's HTTP::Daemon module will encounter a 16,384 byte limit on the combined size of all HTTP request headers. This does not include POST-method form data, file uploads, etc., but it does include the URL. In practice this resulted in a 413 error when a URL was significantly longer than 8,000 characters. This limitation can be easily removed. Look for all occurrences of 16×1024 in Daemon.pm and replace them with a larger value. Of course, this does increase your exposure to denial of service attacks.

另外值得注意的是,有文章提到作为<a>的href属性时,URL不能超过1024bytes,这点没有详细查证

综上,URL还是不适合太长,不是不得已,尽量不要通过GET方式提交大量参数,可以考虑用POST方式(大约在2M左右,应该是和服务器及设定有关)。另外这么长的URL在访问和收藏(有文章提到有些浏览器在收藏超长地址时也是会出现问题)时也是相当不友好的。当然,之前数据库字段设置时还是作为255bytes处理,现在可能要考虑扩充一下了。

PHP 相关文章推荐
dede全站URL静态化改造[070414更正]
Apr 17 PHP
PHP 身份验证方面的函数
Oct 11 PHP
PHP print类函数使用总结
Jun 25 PHP
PHP 飞信好友免费短信API接口开源版
Jul 22 PHP
浅谈php serialize()与unserialize()的用法
Jun 05 PHP
php数组查找函数in_array()、array_search()、array_key_exists()使用实例
Apr 29 PHP
PHP使用pcntl_fork实现多进程下载图片的方法
Dec 16 PHP
学习php设计模式 php实现命令模式(command)
Dec 08 PHP
解决安装WampServer时提示缺少msvcr110.dll文件的问题
Jul 09 PHP
PHP实现模拟http请求的方法分析
Dec 20 PHP
laravel-admin解决表单select联动时,编辑默认没选上的问题
Sep 30 PHP
关于laravel-admin ueditor 集成并解决刷新的问题
Oct 21 PHP
php实现基于微信公众平台开发SDK(demo)扩展的方法
Dec 22 #PHP
php微信公众开发之获取周边酒店信息的方法
Dec 22 #PHP
php天翼开放平台短信发送接口实现方法
Dec 22 #PHP
php进行支付宝开发中return_url和notify_url的区别分析
Dec 22 #PHP
WebQQ最新登陆协议的用法
Dec 22 #PHP
腾讯微博提示missing parameter errorcode 102 错误的解决方法
Dec 22 #PHP
php有道翻译api调用方法实例
Dec 22 #PHP
You might like
php中的实现trim函数代码
2007/03/19 PHP
PHP开发中常用的十个代码样例
2016/02/02 PHP
thinkPHP框架中执行原生SQL语句的方法
2017/10/25 PHP
js调用activeX获取u盘序列号的代码
2011/11/21 Javascript
JS教程:window.location使用方法的区别介绍
2013/10/04 Javascript
javascript为下拉列表动态添加数据项
2014/05/23 Javascript
javascript中DOM复选框选择用法实例
2015/05/14 Javascript
javascript实现网页子页面遍历回调的方法(涉及 window.frames、递归函数、函数上下文)
2015/07/27 Javascript
浅谈javascript 函数表达式和函数声明的区别
2016/01/05 Javascript
简单总结JavaScript中的String字符串类型
2016/05/26 Javascript
jQuery实现右下角可缩放大小的层完整实例
2016/06/20 Javascript
微信小程序基于slider组件动态修改标签透明度的方法示例
2017/12/04 Javascript
JS实现键值对遍历json数组功能示例
2018/05/30 Javascript
vue-cli的build的文件夹下没有dev-server.js文件配置mock数据的方法
2019/04/17 Javascript
vue之延时刷新实例
2019/11/14 Javascript
JavaScript this指向相关原理及实例解析
2020/07/10 Javascript
python使用wxPython打开并播放wav文件的方法
2015/04/24 Python
Python3实现将文件树中所有文件和子目录归档到tar压缩文件的方法
2015/05/22 Python
Python编程实现两个文件夹里文件的对比功能示例【包含内容的对比】
2017/06/20 Python
Python模块WSGI使用详解
2018/02/02 Python
python3中zip()函数使用详解
2018/06/29 Python
Django渲染Markdown文章目录的方法示例
2019/01/02 Python
Python GUI库PyQt5图形和特效样式QSS介绍
2020/02/25 Python
python爬虫学习笔记之pyquery模块基本用法详解
2020/04/09 Python
解决PyCharm不在run输出运行结果而不是再Console里输出的问题
2020/09/21 Python
css3 中实现炫酷的loading效果
2019/04/26 HTML / CSS
纯CSS3制作页面切换效果的实例代码
2019/05/30 HTML / CSS
HTML5 File接口在web页面上使用文件下载
2017/02/27 HTML / CSS
元宵节晚会主持人串词
2014/03/25 职场文书
婚前协议书
2014/04/15 职场文书
质量承诺书格式
2014/05/20 职场文书
优秀实习生主要事迹
2014/05/29 职场文书
节能环保演讲稿
2014/08/28 职场文书
基层党员干部四风问题整改方向和措施
2014/09/25 职场文书
正规借条模板
2015/05/26 职场文书
php实现自动生成验证码的实例讲解
2021/11/17 PHP