1.準備工作
Apache官網下載:
http://www.apachelounge.com/download/
php官網下載:
https://windows.php.net/downloads/releases/archives/
MySQL官網下載:
https://downloads.mysql.com/archives/installer/
2.安裝apache+php+mysql
安裝apache
在官網下載apache壓縮包,解壓到本地
修改配置文件conf/httpd.conf
37行 Define SRVROOT "c:/apache"
39行 ServerRoot "c:/apache"
251行 DocumentRoot "c:/apache/htdocs"
252行 <Directory "c:/apache/htdocs">
368行 ScriptAlias /cgi-bin/ "c:/apache/cgi-bin/"
384行 <Directory "c:/apache/cgi-bin">
運行apache,在控制臺中運行httpd.exe -k install將apache安裝成windows服務,這樣apache以后將自動運行。
運行httpd.exe -k start啟動服務,如果沒有錯誤提示,在瀏覽器中輸入http://127.0.0.1或者http://localhost將顯示如下頁面,apache安裝成功
安裝php
在安裝php之前,先安裝Visual C++
Visual C++ 下載地址:
http://download.microsoft.com/download/9/C/D/9CD480DC-0301-41B0-AAAB-FE9AC1F60237/VSU4/vcredist_x64.exe
http://download.microsoft.com/download/9/C/D/9CD480DC-0301-41B0-AAAB-FE9AC1F60237/VSU4/vcredist_x86.exe
在官網下載php壓縮包,解壓到本地
將php.ini-production重命名為php.ini
重命名后,如下
編輯apache的httpd.conf
查找LoadModule,在其后面增加下面配置
LoadModule php5_module /php/php5apache2_4.dll
PHPIniDir /php
查找AddType,加入如下配置:
AddType Application/x-httpd-php .php
查找DirectoryIndex,加入index.php
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
保存配置,重啟apache服務
在Apache24htdocs目錄下新建一個index.php文件,輸入如下PHP代碼:
<?php
phpinfo();
?>
然后在瀏覽器中訪問
http://127.0.0.1/index.php,如果顯示下面的頁面則表面php工作正常。php安裝成功
3.安裝MySQL可以?參考?之前?發過?的?教程?