主要参考这篇
http://apps.hi.baidu.com/share/detail/15868128
但还是遇到一些问题,记录如下:
1. 配置完成后,restart apache,出现
the requested operation has failed
查看log,有
httpd.exe: Syntax error on line 129 of F:/work_soft/www/server/apache/conf/httpd.conf: Can't locate API module structure `php5_module' in file F:/work_soft/www/server/php/php5.dll: No error[Wed Apr 06 09:24:33 2011] [warn] (OS 995)由于线程退出或应用程序请求,已中止 I/O 操作。 : winnt_accept: Asynchronous AcceptEx failed.
这个的确是按自己的想法配的。。。就应该出问题,但是我的php目录下真的没有php5apache2_2.dll啊。
原来是下载的版本问题,按这个解决:
http://zhidao.baidu.com/question/209354696.html
2.Can't locate API module structure `PHPIniDir' in file F:/work_soft/www/server/php
这个就是自作孽,不可活了
我看人家写的是
LoadModule php5_module "D:/WWW/SERVER/PHP/php5apache2_2.dll" PHPIniDir "D:/WWW/SERVER/PHP"
可能他不小心少写了个LoadModule吧,我就给补成:
LoadModule php5_module "F:/work_soft/www/server/php/php5apache2_2.dll"
LoadModule PHPIniDir "F:/work_soft/www/server/php"
删掉删掉。。
3. [Wed Apr 06 09:48:49 2011] [error] [client 127.0.0.1] client denied by server configuration: F:/work_soft/web/
参考 :
http://zyp731.iteye.com/blog/283433
修改如下:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>