首先下載所需軟件:php
Vc2015:https://www.microsoft.com/zh-CN/download/details.aspx?id=48145html
Vc2012:http://www.microsoft.com/zh-CN/download/details.aspx?id=30679mysql
Apache2.4:http://www.apachelounge.com/downloadsql
PHP:http://windows.php.net/download (下載線程安全版的,即Thread Safe)apache
Mysql:https://www.mysql.com/downloadswindows
安裝並配置Apache瀏覽器
Apache版本:Apache2.4.16安全
解壓目錄:D:\PHP\Apache24服務器
安裝Apache2.4.16,vc14版本的,須要先安裝Visual C++ Redistributable for Visual Studio 2015運行庫;vc11版本的,須要先安裝Visual C++ Redistributable for Visual Studio 2012運行庫app
(1).下載回來的是解壓文件,解壓好放到要安裝的位置。
(2).打開Apache24\conf下httpd.conf 文件,修改如下關鍵位置:
ServerRoot 「D:/PHP/Apache24」(即Apache的安裝位置);
DocumentRoot 「D:/PHP/Apache24/htdocs」 (Apache默認的網站根目錄,可根據本身的 喜愛調整)
修改根目錄的選項:
修改前
<Directory "c:/Apache24/htdocs">
Options Indexes FollowSymLinks
AllowOverride null
Require all granted
</Directory>
修改後
<Directory "D:/PHP/Apache24/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
#ServerName www.example.com:80 => ServerName 127.0.0.1:80 (去掉前面的#)
DirectoryIndex index.html => DirectoryIndex index.html index.php index.htm (咱們添加了 index.php index.htm)
ScriptAlias /cgi-bin/ "c:/Apache24/cgi-bin/"改成
ScriptAlias /cgi-bin/ "d:/PHP/Apache24/cgi-bin/"
<Directory "c:/Apache24/cgi-bin"> => <Directory "d:/PHP/Apache24/cgi-bin">
(3).打開cmd,並輸入如下命令行
d: 回車
cd PHP\Apache24\bin 調到Apache24中bin目錄下
httpd 回車 若是沒有任何提示表示啓動成功
若是想在服務中添加Apache24,則以管理員身份 運行cmd,並輸入如下命令
d: 回車
cd PHP\Apache24\bin 回車
httpd.exe -k install 回車
(4).打開瀏覽器輸入「http://localhost/」進行測試,顯示」It works!」證實配置成功。
安裝並配置PHP
PHP版本:php5.6.14
安裝目錄:D:\PHP\php56
安裝php5.6.14須要先安裝Visual C++ Redistributable for Visual Studio 2012運行庫
(1).下載回來的是解壓文件,解壓好放到要安裝的位置;
(2).複製份php.ini-development,並更名爲php.ini
(3).讓Apache24加載PHP模塊,打開Apache24\conf\httpd.conf,在最後加上
LoadModule php5_module "D:/PHP/php56/php5apache2_4.dll"
AddType application/x-httpd-php .php .html .htm
PHPIniDir "D:/PHP/php56" (告訴apache php.ini的位置)
(4).開啓幾個經常使用php擴展(根據需求自行選擇),打開php.ini文件,修改如下內容:
;extension_dir = "ext" => extension_dir = "D:/PHP/php56/ext"(去掉分號)
;extension=php_mbstring.dll => extension=php_mbstring.dll
;extension=php_mysql.dll => extension=php_mysql.dll
;extension=php_mysqli.dll => extension=php_mysqli.dll
注意:win下要開啓curl擴展,libeay32.dll和ssleay32.dll必須放到PATH環境變量包含的目錄下
(5).重啓Apache服務器
安裝Mysql
Mysql版本:mysql5.6.27
點擊文件直接安裝便可。