PHP行動互聯網開發之環境建置及配置

巴扎黑
發布: 2023-03-06 18:22:01
原創
1206 人瀏覽過

[導讀] 一、PHP5 4環境搭配基本流程Apache:Web服務提供者。官方網站:www apache orgPHP: 官方網站:www php netMysql: 官方網站:www mysql com二、軟體下載Apache下載位址:http:  download csdn net detail lxq_xsyu 7057423PHP

#  #   Apache:Web服務提供者。官網:www.apache.org

PHP: 官網:www.php.net

Mysql:  官網:www.mysql.com

Apache下載網址:http://download.csdn.net/detail/lxq_xsyu/7057423PHP行動互聯網開發之環境建置及配置

PHP下載位址:http://download.csdn.net/detail/lxq_xsyu/7057401

Mysql下載位址:http://download.csdn.net/detail/lxq_xsyu/6468461

(1)Apache安裝

安裝成功PHP行動互聯網開發之環境建置及配置

(2)解壓縮PHP5.4PHP行動互聯網開發之環境建置及配置

#(3)設定Apache的httpd.conf檔PHP行動互聯網開發之環境建置及配置

Apache安裝目錄PHP行動互聯網開發之環境建置及配置 

#ServerRoot "D:/Apache Software Foundation"  


## 
  1. 監聽埠
  2.  

  3. #Listen 12.34.56.78:80  
#Listen 12.34.56.78:80  

  1.  
  2.  


Listen 80  

     
  1. 載入PHP元件

     

##LoadModule php5_module " D:/php54/php5apache2_2.dll"  



  1. # 伺服器名稱
 


#ServerName www.meritit.com:80  


  1. # 文件根目錄

     
  2. DocumentRoot "D:/Apache Software Foundation/htdocs"  



# 權限資料夾   

  1. #  





  1. #

    索引(預設存取首頁)
  2.  

  3.   





  1. ##    DirectoryIndex index.html  

  2. ###  ########### ################### 錯誤日誌 ###### ############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.######ErrorDocument 402 http://www.meritit.######ErrorDocument 402 http://www.meritit.######ErrorDocument 402 http://www.meritit.######ErrorDocument 402 http://www.meritit.######ErrorDocument 402 http://www.meritit。 com/subscription_  ############################### ###########新a.php# ##### ############
  3. ?>  


PHP行動互聯網開發之環境建置及配置

#

  1.  

  2. 可以看到找不到php的設定文件,我們在apache設定檔中指定一下php的設定檔目錄
  3.  

PHPIniDir "D:/php54"  

PHP行動互聯網開發之環境建置及配置

  1. #

  2.  

  3. # Virtual hosts  



  1. ##Include conf/extra/httpd-vhosts.conf  

  2. 去掉上面註解(開啟虛擬主機設定檔)
  3.  

    在httpd-vhosts.conf中設定了兩個網站如下
  4.  

  5. #  


  6.     DocumentRoot "D:/Apache Software_ Found  DocumentRoot "D:/Apache Software_ Found  DocumentRoot "D:/Apache Software_ Found/aa"#com"


  7. #    ServerName 127.0.0.2  






  8.     ServerAlias www.dummy-host.meritit.com  


  9.     ErrorLog .meritit.com-error.log"  


  10.     CustomLog "logs/dummy-host.meritit.com-access. log" common  


  11. #  






  1.   


  2.     DocumentRoot "D:/Apache Software Foundation/b_com"  


  3.     ServerName 127.0.0.3  


#    -host2.meritit.com-error.log"  

PHP行動互聯網開發之環境建置及配置

    CustomLog "logs/dummy-host2.meritit.com- access.log" common  PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

#  

PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

################ ##############注意:一旦配置了虛擬主機,前面配置的DocumentRoot就無效了。 ######D:PHP行動互聯網開發之環境建置及配置Apache Software FoundationPHP行動互聯網開發之環境建置及配置a_comPHP行動互聯網開發之環境建置及配置a.php###### ############  ############################ D:PHP行動互聯網開發之環境建置及配置Apache Software FoundationPHP行動互聯網開發之環境建置及配置b_comPHP行動互聯網開發之環境建置及配置b.php################  ##################?>  ###################?>  ###################?>  ###################?>  ####### #################### ######注意:要修改權限資料夾目錄####### 存取結果:##################################一、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安裝目錄### ### ###
  1. ServerRoot "D:/Apache Software Foundation"  



  1.  

    監聽埠
  2.  


  3. #Listen 12.34.56.78:80  

 

 
  1. Listen 80  

  1. #
  2.  


     
#

載入PHP元件

 

  1. LoadModule php5_module "D:/php54/php5apache2_2.dll"  


  1. # 伺服器名稱
  2.  


     


#ServerName www.meritit.com:80  

  1. 文件根目錄
  2.  
  3.  

  4. DocumentRoot "D:/Apache Software Foundation/htdocs"  


  5. 權限資料夾
  6.  

     

  7.   





    ##
  1. 索引(預設存取首頁)

     

    #
  2.  

  3.   

  4.     DirectoryIndex index.html
  5. #    DirectoryIndex index.html# 

    ##    DirectoryIndex index.html#


  6. #  


  1. # # 錯誤日誌
  2.  

     

  3. ErrorLog "logs/error.log"  


  4. 存取日誌

     
  5.  

  6. CustomLog "logs/access.log" common  



配置解析php

 

 

AddType application/x-compress .Z  

  1. AddType application/x-gzip .gz .tgz  

  2. #AddType application/x-httpd-php .php  


  3. #
  4. 錯誤類型
 PHP行動互聯網開發之環境建置及配置
 

#ErrorDocument 500 "The server made a boo boo."  

  1. ##ErrorDocument 404 /missing.html  

PHP行動互聯網開發之環境建置及配置

#ErrorDocument 404 "/cgi-bin/missing_handler.pl"  







  1. #'

  2. ########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 ###    DocumentRoot "D:/Apache Softwarewarewareware Foundation/a_com"  ############################    ServerName 127.0.0.2  ############### ############    ServerAlias www.dummy-host.meritit.com  ###########################   "logs/dummy-host.meritit.com-error.log"  ###################
  3.     CustomLog "logs/dummy-host.meritit.com-access.log" common  





  4. #1
      






  5.   

    DocumentRoot "D:/Apache Software Foundation/b_com"  

  1.     ServerName 127.0.0.3  

  2.     ErrorLog "logs/dummy-host2.meritit.com-error.log"  





PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

PHP行動互聯網開發之環境建置及配置

################################################# ###########    CustomLog "logs/dummy-host2.meritit.com-access.log" common  ######################1 #####  ######################## ######注意:一旦配置了虛擬主機,前面配置的DocumentRoot就無效了。 ### ###D:PHP行動互聯網開發之環境建置及配置Apache Software FoundationPHP行動互聯網開發之環境建置及配置a_comPHP行動互聯網開發之環境建置及配置a.php#### ### ### #########  ####################### D:PHP行動互聯網開發之環境建置及配置Apache Software FoundationPHP行動互聯網開發之環境建置及配置b_comPHP行動互聯網開發之環境建置及配置b.php############  #################? ############## ### ### ###注意:要修改權限資料夾目錄### 訪問結果: ######### ########## ############

以上是PHP行動互聯網開發之環境建置及配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!