Aphache做伺服器:
安裝 Apache 並進行配置使其支援 Php
將 Apache 安裝在 d:\website\apache 目錄中。Apache 安裝過程需要輸入網站網域名稱,本地調試使用localhost即可,安裝過程很簡單,全圖形化介面,不再贅述。
PHP解壓縮到 d:\website\php 目錄中
然後找到 d:\website\php\php.ini-dist 檔案,將其重新命名為 php.ini,並複製到 c:\windows 目錄裡。
再將 d:\website\php\ 目錄中的 php5ts.dll 和 libMySQL.dll 兩個檔案,一起複製到 c:\windows\system 或 c:\windows\system32 目錄中。
編輯 d:\apache\apache2\conf\httpd.conf 檔案:
首先找到 DocumentRoot 一行,將其後的路徑修改為 web 服務的主目錄,例如:DocumentRoot "D:/website/public_html";
然後找到 DirectoryIndex 一行,在行末加上 index.htm index.php,例如:DirectoryIndex index.html index.html.var index.htm index.php
為 Apache 安裝 Php: 編輯 d:\apache\conf\httpd.conf 檔案:
找到 #LoadModule ssl_module modules/mod_ssl.so 這行,在此行後增加一行:
LoadModule php5_module d:/website/php/php5apache2.dll
找到 AddType application/x-gzip .gz .tgz,在此行後增加三行:
ScriptAlias /php/ "d:/website/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php-cgi.exe"
d:/website/php/ 是指 php 5.03 的安裝目錄路徑,請視具體情況更改。
重新啟動 Apache 服務。
到這裡,Apache + Php 環境基本已經配置完成,在 web 根目錄(以上例即 d:\website\public_html\ 目錄)中,用記事本建立一個 phpinfo.php 檔案,其內容如下:
<?
echo phpinfo();
?>
然後,在瀏覽器中開啟 http://localhost/phpinfo.php ,如果看到 Php 配置輸出資訊,就說明配置正常。
IIS上運行PHP
1.
預設網站--屬性--主目錄--配置--添加
添加應用程式副檔名映射:
可執行檔:C:\php\php.exe %s %s
副檔名:.php
選定:指令碼引擎、檢查檔案是否存在
2.
預設網站--屬性--主目錄--文檔-添加
index.php
或者:
預設網站--屬性--主目錄--配置--添加
C:\php\php5isapi.dll
.PHP