关于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 相关文章推荐
PHP+MySQL投票系统的设计和实现分享
Sep 23 PHP
PHP APC的安装与使用详解
Jun 13 PHP
深入解析php中的foreach问题
Jun 30 PHP
Server.HTMLEncode让代码在页面里显示为源代码
Dec 08 PHP
php对包含html标签的字符串进行截取的函数分享
Jun 19 PHP
PHP网页游戏学习之Xnova(ogame)源码解读(二)
Jun 23 PHP
Windows7下的php环境配置教程
Feb 28 PHP
curl和libcurl的区别简介
Jul 01 PHP
PHP各种异常和错误的拦截方法及发生致命错误时进行报警
Jan 19 PHP
深入理解PHP中的empty和isset函数
May 26 PHP
php 中htmlentities导致中文无法查询问题
Sep 10 PHP
Linux下安装Memcached服务器和客户端与PHP使用示例
Apr 15 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
php4的session功能评述(二)
2006/10/09 PHP
PHP代码网站如何防范SQL注入漏洞攻击建议分享
2012/03/01 PHP
php+mysql+ajax实现单表多字段多关键词查询的方法
2017/04/15 PHP
PHP排序算法之简单选择排序(Simple Selection Sort)实例分析
2018/04/20 PHP
用js统计用户下载网页所需时间的脚本
2008/10/15 Javascript
jquery插件实现鼠标经过图片右侧显示大图的效果(类似淘宝)
2013/02/04 Javascript
关于jQuery $.isNumeric vs. $.isNaN vs. isNaN
2013/04/15 Javascript
JavaScript:new 一个函数和直接调用函数的区别分析
2013/07/10 Javascript
框架页面高度自动刷新的Javascript脚本
2013/11/01 Javascript
jQuery对Select的操作大集合(收藏)
2013/12/28 Javascript
js操作iframe父子窗体示例
2014/05/22 Javascript
JavaScript 对象字面量讲解
2016/06/06 Javascript
jQuery事件绑定用法详解
2016/09/08 Javascript
jquery动态创建div与input的实例代码
2016/10/12 Javascript
jQuery动态增减行的实例代码解析(推荐)
2016/12/05 Javascript
JavaScript分步实现一个出生日期的正则表达式
2018/03/22 Javascript
微信小程序中this.data与this.setData的区别详解
2018/09/17 Javascript
vue工程全局设置ajax的等待动效的方法
2019/02/22 Javascript
解决Ant Design Modal内嵌Form表单initialValue值不动态更新问题
2020/10/29 Javascript
Python运用于数据分析的简单教程
2015/03/27 Python
python字典快速保存于读取的方法
2018/03/23 Python
Python常见读写文件操作实例总结【文本、json、csv、pdf等】
2019/04/15 Python
python pandas生成时间列表
2019/06/29 Python
Python 使用folium绘制leaflet地图的实现方法
2019/07/05 Python
Python编写打字训练小程序
2019/09/26 Python
python中执行smtplib失败的处理方法
2020/07/01 Python
SheIn俄罗斯:时尚女装网上商店
2017/02/28 全球购物
Carolina工作鞋官网:Carolina Footwear
2019/03/14 全球购物
英国网上自行车商店:Tredz Bikes
2019/10/29 全球购物
汽车维修专业自荐书
2014/05/26 职场文书
老干部工作汇报材料
2014/10/28 职场文书
解约证明模板
2015/06/19 职场文书
初中政治教学工作总结
2015/08/13 职场文书
幼儿园托班开学寄语(2016春季)
2015/12/03 职场文书
CSS 实现多彩、智能的阴影效果
2021/05/12 HTML / CSS
聊聊配置 Nginx 访问与错误日志的问题
2022/05/25 Servers