Win32下Apache 2.0.35 php 4.2.0安裝扎記
1、安裝界面比較有好,分別添入ServerAdmin、ServerName、post即可
如果你起用了DNS,會將DNS的設置作為默認配置,這點要注意。
當可見到默認主頁時表明安裝成功,一般沒有問題
2、默認的主頁位置在[d]:/Program Files/Apache Group/Ahache2/htdocs
若需要修改可在httph.conf文件中修改(下同)
DucumentRoot "你的主頁位置"
請同時修改
<Directory "你的主頁位置">
如需要配置用戶主頁,可修改
UserDir "用戶主頁集位置"
訪問時用http://ServerName:post/~用戶目錄名
3、設定默認頁面名
將
DirectoryIndex index.html index.html.var
改為
DirectoryIndex index.php index.html index.html.var
4、將
AddDefaultCharset ISO-8859-1
改為
AddDefaultCharset GB2312
以使輸出頁面的默認字符集為 gb2312,可防止出現亂碼
5、在尾部添上(注意apache2filter.dll的真實路徑)
LoadModule php4_module c:/php/experimental/apache2filter.dll
AddOutputFilter PHP .php
AddInputFilter PHP .php
AddType text/html .php
6、php4.2.0的安裝與低版本相同
到此,大功告成,你可以享受Apache 2.0了