php-5.6.2-Win32-VC11-x64.zip+ apache2.4.10 +php_xdebug-2.2.5-5.6-vc11-x86_64.dll+mysql5.6安装配置

php-5.6.2-Win32-VC11-x64.zip+ apache2.4.10 +php_xdebug-2.2.5-5.6-vc11-x86_64.dll+mysql5.6安装配置


1、下载的Apache安装包:httpd-2.4.10-win64-VC11.zip并解压到httpd-2.4.10-win64-VC11目录,把目录中Apache24拷到C盘。

2、下载的PHP安装包:php-5.6.2-Win32-VC11-x64.zip(必须都要64位的,否则配置完启动会失败)并解压到D:\PHP目录下。

3、为Apache服务添加php支持

打开Apache的配置文件http.conf在最后加上

# php5 support

LoadModulephp5_module D:/php/php5apache2_4.dll

AddTypeapplication/x-httpd-php .php .html .htm

# configure thepath to php.ini

PHPIniDir "D:/php"

4、重启Apache

5、配置XDebug,把xdebug.dll拷贝到E:\php目录下,在php.ini中添加下面两行配置文本

zend_extension="D:/PHP/php_xdebug-2.2.5-5.6-vc11-x86_64.dll"
xdebug.remote_enable=1

6、php.ini中extension_dir = "ext"改为extension_dir = "E:/PHP/ext"

7、将php.ini中

;extension=php_mysql.dll
;extension=php_mysqli.dll

;去掉。


你可能感兴趣的:(Apache)