標籤:windows software 官方網站 伺服器 下一步
首先在apache和PHP官方網站上下載安裝包 Apache提供了windows安裝包雙擊運行安裝就可以了。至於php可以下載windows的zip就可以了。
下載好了安裝包以後首先是安裝apache,雙擊下一步把apache安裝在相應目錄即可。
然後是安裝php,把下載的php zip解壓在某個目錄中 比如放在D盤的Php檔案夾下檔案路徑:d:/php
做完這些後就可以開始進行相關的配置
首先是對apache進行配置
開啟httpd.conf檔案 該檔案在apache安裝目的下的conf檔案夾下
設定伺服器的根目錄
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
-----> DocumentRoot "D:/PHPWeb" //改成你想要的路徑
<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
----> <Directory "D:/PHPWeb"> //同樣是該為你想要的路徑
最後修改具體的index檔案先後順序,由於配置了PHP功能,當然需要index.php優先執行
DirectoryIndex index.html
----> DirectoryIndex index.php index.html
讓Apache載入PHP(下面代碼加在檔案最後就行 改成相應路徑)
LoadModule php5_module "c:/php/php5apache2_2.dll"
PHPIniDir "c:/php"
AddType application/x-httpd-php .php .html .htm
配置php
開啟php.ini檔案 找到
; On windows:
; extension_dir = "ext
---> ; On windows:
extension_dir = "C:/php/ext" //改成相應目錄
由於預設PHP並不支援自動連接Mysql,需開啟相應的擴充庫功能,比如php_mysql.dll等,即將
extension=php_curl.dll //支援curl
extension=php_gd2.dll //支援gd影像處理
extension=php_mbstring.dll //支援mbstring
extension=php_mysql.dll //支援mysql
windows下手動搭建apache和php環境