有时发会发现网站打不开打开时间非常的久,然后查看了apache日志现了有AH00341: winnt_accept: Asynchronous AcceptEx failed错误 Apache网页有时能访问,有时超时打不开 错误日志中有如下提示: [Sat Jan 04 10:28:13.328125 2014] [mpm_winnt:warn] [pid 3252:tid 2712] (OS 64)指定的网络名不再可用。 : AH00341: winnt_accept: Asynchronous AcceptEx failed. [Wed May 14 10:51:47.015625 2014] [core:error] [pid 3252:tid 736] (20025)The given path contained wildcard characters: [client 14.17.18.146:34804] AH00036: access to /*.htm failed (filesystem path 'D:/wamp/www/*.htm') 查询原因: (1)wamp2.4中的apache与win server 2008可能不兼容 (2)因为杀毒软件的原因 解决方案, 在配置文件中加入: 代码如下 复制代码 AcceptFilter http none AcceptFilter https none EnableSendfile Off EnableMMAP off 解决问题。 |