一、安装路径 将PHP(PHP 5.2.8)安装到C:\PHP中;Apache(Apache 2.2.11)和MySql(MySql 5.0.67)安装到默认目录中 新建目录 F:\phpwwwroot 相关下载: http://ftp.wayne.edu/php/php-5.2.8-Win32.zip http://mysql.oss.eznetsols.org/Downloads/MySQL-5.0
一、安装路径
将PHP(PHP 5.2.8)安装到C:\PHP中;Apache(Apache 2.2.11)和MySql(MySql 5.0.67)安装到默认目录中
新建目录 F:\phpwwwroot
相关下载:
http://ftp.wayne.edu/php/php-5.2.8-Win32.zip
http://mysql.oss.eznetsols.org/Downloads/MySQL-5.0/mysql-essential-5.0.67-win32.msi
http://www.apache.org/dist/httpd/binaries/win32/apache_2.2.11-win32-x86-no_ssl.msi
二、PHP
(一)安装PHP
(1)下载PHP压缩包,并将其解压到C:\PHP
(2)将php.ini-dist(本机测试时推荐)或者php.ini-recommended(作为服务器时推荐)改名为php.ini
(3)将C:\PHP和C:\PHP\ext加到系统的PATH环境变量中
(二)配置PHP
打开C:\php\php.ini
(1)将doc_root改为 F:\phpwwwroot,即
![[WAPM]Apache2.2+php5+mysql5终极配置](http://www.lorui.com/article/images/quote.gif)
引用内容
doc_root = F:\phpwwwroot
(2)将extension_dir 改为 "C:\php\ext":extension_dir = "C:\php\ext"
(3)将extension=php_curl.dll、extension=php_gd2.dll、extension=php_gettext.dll、extension=php_mbstring.dll、extension=php_mcrypt.dll、extension=php_mysql.dll、extension=php_mysqli.dll、extension=php_sockets.dll前面的分号去掉
三、Apache
(一)安装Apache
按默认选项安装
(二)配置Apache
打开C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf
查找LoadModule,添加以下内容
![[WAPM]Apache2.2+php5+mysql5终极配置](http://www.lorui.com/article/images/quote.gif)
引用内容
#---------------------------------------------------
# 对 PHP 5 支持:
LoadModule php5_module "c:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
# 配置 php.ini 的路径
PHPIniDir "C:/php"
#---------------------------------------------------
查找 DirectoryIndex,添加index.php
![[WAPM]Apache2.2+php5+mysql5终极配置](http://www.lorui.com/article/images/quote.gif)
引用内容
DirectoryIndex index.php index.html
查找DocumentRoot,将其改为 F:/phpwwwroot
![[WAPM]Apache2.2+php5+mysql5终极配置](http://www.lorui.com/article/images/quote.gif)
引用内容
DocumentRoot "F:/phpwwwroot"
查找<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">,将其改为:
![[WAPM]Apache2.2+php5+mysql5终极配置](http://www.lorui.com/article/images/quote.gif)
引用内容
<Directory "F:/phpwwwroot">
四、MySql
按默认选项安装即可
五、重启
安装完毕,为了配置生效,请重新启动计算机!