一、PHP5.4環境搭配基本流程
Apache:Web服務提供者。官網:www.apache.org
PHP: 官網:www.php.net
Mysql: 官網:www.mysql.com
二、軟體下載
Apache下載網址:http://download.csdn.net/detail/lxq_xsyu/7057423
PHP下載網址:http://download.csdn.net/detail/lxq_xsyu/7057401
Mysql下載網址:http://download.csdn.net/detail/lxq_xsyu/6468461
三、環境搭建
(1)Apache安裝
安裝成功
(2)解壓縮PHP5.4
(3)設定Apache的httpd.conf檔
Apache安裝目錄
ServerRoot "D:/Apache Software Foundation"
監聽埠
#Listen 12.34.56.78:80
Listen 80
載入PHP組件
LoadModule php5_module "D:/php54/php5apache2_2.dll"
伺服器名稱
#ServerName www.meritit.com:80
檔案根目錄
DocumentRoot "D:/Apache Software Foundation/htdocs"
權限資料夾
索引(預設存取主頁)
DirectoryIndex index.html
錯誤日誌
ErrorLog "logs/error.log"
訪問日誌
CustomLog "logs/access.log" common
配置解析php
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
錯誤類型
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.meritit.com/subscription_
四、測試是否搭建成功
新建a.php
可以看到找不到php的設定文件,我們在apache設定檔中指定一下php的設定檔目錄
PHPIniDir "D:/php54"
五、設定多站點存取
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
去掉上面註解(開啟虛擬主機設定檔)
在httpd-vhosts.conf中配置了兩個站點如下
DocumentRoot "D:/Apache Software Foundation/a_com"
ServerName 127.0.0.2
ServerAlias www.dummy-host.meritit.com
ErrorLog "logs/dummy-host.meritit.com-error.log"
CustomLog "logs/dummy-host.meritit.com-access.log" common
DocumentRoot "D:/Apache Software Foundation/b_com"
ServerName 127.0.0.3
ErrorLog "logs/dummy-host2.meritit.com-error.log"
CustomLog "logs/dummy-host2.meritit.com-access.log" common
注意:一旦配置了虛擬主機,前面配置的DocumentRoot就無效了。
D:Apache Software Foundationa_coma.php
D:Apache Software Foundationb_comb.php
注意:要修改權限資料夾目錄
訪問結果:
|