1、下载PHP7,Apache2.4
http://windows.php.net/download#php-7.0
1.2下载Apache web容器
http://httpd.apache.org/docs/current/platform/windows.html#down
2、安装 apache,PHP
2.1 php配置
php压缩包下载后,解压,然后配置环境变量
D:\website\php-7.0.8;D:\website\php-7.0.8\ext;
测试下
php配置成功
2.2 apache 配置
修改D:\website\Apache24\conf\httpd.conf 文件
修改SRVROOT的路径
Define SRVROOT "D:/website/Apache24"ServerRoot "${SRVROOT}"
2.3 添加Apache PHP解析
LoadModule php7_module "D:/website/php-7.0.8/php7apache2_4.dll"AddType application/x-httpd-php .php .html .htmPHPIniDir "D:/website/php-7.0.8"
修改通过URL重写隐藏
1、httpd.conf配置文件中加载了mod_rewrite.so模块
2、AllowOverride None 将None改为 All
2.4 创建apache服务
到apache的bin路径下
然后到cmd 里面services.msc 下开启apache服务,(名称apache24)
或者用apache 目录下的bin目录里面的ApacheMonitor.exe启动apache服务。
然后再浏览器中打开 localhost