
http
文章平均质量分 62
TaoLR
程序员和司机一样,总是自我安慰说等到需要的时候再去学新技能也来得及。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HTTP - Methods
https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methodshttp://www.tutorialspoint.com/http/http_methods.htmRequest methods[edit]An HTTP 1.1 request made usin转载 2015-06-23 17:33:14 · 1135 阅读 · 0 评论 -
从输入 URL 到页面加载完成的过程中都发生了什么事情?
背景本文来自于之前我发的一篇微博:不过写这篇文章并不是为了帮大家准备面试,而是想借这道题来介绍计算机和互联网的基础知识,让读者了解它们之间是如何关联起来的。为了便于理解,我将整个过程分为了六个问题来展开。第一个问题:从输入 URL 到浏览器接收的过程中发生了什么事情?从触屏到 CPU首先是「输入 URL」,大部分人的第一反应会是键盘,不过为了转载 2014-07-02 09:11:04 · 2178 阅读 · 0 评论 -
400 Bad Request
The Host request-header field specifies the Internet host and port number of the resource being requested, as obtained from the original URI given by the user or referring resource (generally an HTTP U原创 2015-11-17 13:28:53 · 1098 阅读 · 0 评论 -
$request_uri和$uri
$request_uri This variable is equal to the *original* request URI as received from the client including the args. It cannot be modified. Look at $uri for the post-rewrite/altered URI. Does not inclu原创 2012-12-26 19:51:39 · 2061 阅读 · 0 评论 -
Http response code
100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分。(HTTP 1.1新)101 Switching Protocols 服务器将遵从客户的请求转换到另外一种协议(HTTP 1.1新) 200 OK 一切正常,对GET和POST请求的应答文档跟在后面。201 Created 服务器已经创建了文档,Location头给出了它的URL。202 Accept原创 2012-10-17 00:08:11 · 1308 阅读 · 0 评论 -
并发串行调用接口
并行+串行的思路,在一些后端服务吞吐和并发等有性能瓶颈时,为了提升用户体验,有时候前端不得不做一个小的权衡。原创 2016-10-30 22:49:18 · 1944 阅读 · 0 评论 -
屏蔽Web_server版本信息!
1.已经在生产环境中跑的apache!如何屏蔽!屏蔽apache的版本信息! 一定程度上可以防止黑客的攻击效率! 因为有时候系统没有来得及升级,而低版本的出现了漏洞!shell> curl -I URL ///这样会看到它系统的版本信息!---------------------------------------------->配置:/usr/local/apac原创 2012-09-12 23:17:40 · 1442 阅读 · 0 评论