一,准备安装
下载PHP,APACHE,MYSQL压缩包和安装文件.
本机上装的版本分别为:mysql-installer-community-5.6.10.1,php-5.4.13-Win32-VC9-x86,httpd-2.4.4-win32-ssl_0.9.8
二,开始安装
1. 安装Apache2.4
解压httpd-2.4.4-win32-ssl_0.9.8.zip至D盘(可根据自己要求解压到各自盘符)
?
2. 配置Apache2.4
打开Apache24\conf下httpd.conf 文件,用记事本打开即可。
(1)第37行ServerRoot "c:/Apache24"改为ServerRoot “D:/Apache24”;//Apache程序的位置。
?
(2)第204行的ServerAdmin改不改无所谓;
?
(3)第213行ServerName前面的“#”号去掉并加上本机IP地址和自定义端口ServerName 127.0.0.1:8024;这个端口和58行:Listen 8024端口保持一致.
?
(4)第237行DocumentRoot "c:/Apache24/htdocs"改为DocumentRoot "D:/www";//网站的根目录
?
第238行<Directory "c:/Apache24/htdocs">改为<Directory " D:/www ">;
?
注意:这个WWW文件夹要自己去新建的,不建的话会报错的。
?
(5)第271行DirectoryIndex index.html改为DirectoryIndex index.html index.php index.htm //支持更多的默认页
?
(6)第354行 ScriptAlias /cgi-bin/ "c:/Apache24/cgi-bin/"改为ScriptAlias /cgi-bin/ "d:/Apache24/cgi-bin/"
?
(7)第370行<Directory "c:/Apache24/cgi-bin">改为<Directory "D:/Apache24/cgi-bin">
?
3.启动Apache2.4
开始 --- 运行,输入cmd,打开命令提示符。接着输入d:回车cd Apache24\bin回车httpd回车.如果httpd.conf配置正确的话,输入httpd回车后是没有任何提示的。
打开浏览器,输入:http://localhost:8024,打开一个目录列表,则表示启动成功.