首先打开 Apache 的配置文件 httpd.conf 这个文件, 找到这句:“#Include etc/extra/httpd-mpm.conf” , 将前面的 "#" 号去掉
1、在 Apache 的 conf/extra/httpd-mpm.conf 文件下配置
<IfModule mpm_winnt.c>
ThreadsPerChild 150
MaxRequestsPerChild 1000
#Win32DisableAcceptEx
AcceptFilter http none
AcceptFilter https none
</IfModule>
2、在 httpd.conf 下添加
AcceptFilter http none
AcceptFilter https none
EnableSendfile Off
EnableMMAP off
ps:
http://www.asymt.com/servers/windows/350.html
http://unixboy.iteye.com/blog/702040