Home >Backend Development >PHP Tutorial >apache处理第一个请求时响应很慢

apache处理第一个请求时响应很慢

WBOY
WBOYOriginal
2016-06-23 14:19:511424browse

真心伤不起了, 如图所示,加载html居然就花了20秒+,不知道为什么响应这么慢。
试了简单页面,没发现这个问题。开始怀疑是css的问题,结果一看却是html那里慢。试了好多次都是20秒+的节奏。。换了其他浏览器也是感觉很慢很慢。。

我估计是apache的原因,但是不知道具体问题在哪里,求救啊!


回复讨论(解决方案)

经过你的推断应该是html还是apache?将你的html做一个测试 放一个最简单的代码 什么 hi 之类的,这样如果apache飞快的打开的话 那就要去看看你的html代码究竟是些什么东西能加载个20秒了。

加几个$timer输出一下看看就是了。不排除文件系统的问题,包括硬件的问题。

解决了,是apache的原因。在配置最后加上
AcceptFilter http none  
AcceptFilter https none
就可以了。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:XML解析Next article:怎么把上传的图片直接输出了