1.安装XAMPP Control Panel
XAMPP集成了PHP、APACHE、MYSQL
2.修改Apache配置文件
[httpd.conf]
增加默认首页:(xampp中已加,如果没有可添上)
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
DirectoryIndex index.php index.html
</IfModule>
加入php模块提供php支持:
LoadModule php5_module "D:/xampp/php/php5apache2_4.dll"
加入浏览器识别的php文件类型:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php .html .htm
[PHP.ini]
PHPIniDir="D:/xampp/php"