wampserver作為php的整合環境,簡化了php的環境搭建,深受眾多開發者熱愛。
1.找到apache中重要的配置檔案-httpd.conf,新增你需要新增的埠號;apache預設的埠號是80。
2.找到
去掉#號。#號是注釋,去掉#啟用這個配置檔案;
3.找到httpd-vhosts.conf,路徑:c:\wamp\bin\apache\apache2.2.21\conf\extra
在最後新增乙個虛擬主機:
documentroot "d:\workspace\test" (你的檔案目錄)
servername 127.0.0.1 (你的網域名稱)
4.新增許可權-回到httpd.conf
options indexes followsymlinks
allowoverride none
order allow,deny
allow from all
允許所有人訪問
5.重啟服務,在瀏覽器中輸入localhost:10086
windows下為apache配置多個站點
安裝好apache以後,可以在瀏覽器中輸入http localhost測試.更改第乙個站點的根目錄 在檔案apache2.2 conf httpd.conf中查詢 documentroot 屬性,將後面的路徑改為你的主站點的路徑,如 d www web1 為第二個apache服務建立配置檔案 複製並...
windows下為apache配置多個站點
安裝好apache以後,可以在瀏覽器中輸入http localhost測試.更改第乙個站點的根目錄 在檔案apache2.2 conf httpd.conf中查詢 documentroot 屬性,將後面的路徑改為你的主站點的路徑,如 d www web1 為第二個apache服務建立配置檔案 複製並...
wampserver如何配置。
1.配置php,搜尋php.ini檔案 找到 short open tag off,改為on 2.搜尋http.conf檔案 找到 include conf extra httpd vhosts.conf,去掉前邊的 號 3.搜尋httpd vhosts.conf檔案,最後加入類似內容 檔案路徑是自...