程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Win32下Apache 2.0.35 php 4.2.0安裝扎記

Win32下Apache 2.0.35 php 4.2.0安裝扎記

編輯:關於PHP編程

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了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved