一.配置httpd.conf
[開啟wamp安裝路徑:..\wamp\bin\apache\apache2.4.9\conf]
1.監聽多個埠
#listen 12.34.56.78:80
listen 19439
listen 19440
可以通過netstat -n -a檢視埠是否開啟
2.開啟虛擬站點
【方法1.】
#修改為
【方法2.】
#或直接將虛擬站點在httpd.conf 檔案中
##.............
#標籤後新增
##3.php配置
載入php模組,php5apache2_4代表使用的是apache2.4或以上版本
loadmodule php5_module "d:/wamp/bin/php/php5.5.12/php5apache2_4.dll"
phpinidir d:/wamp/bin/php/php5.5.12
配置php檔案型別對映
4.配置多專案路徑
【方法1:直接在httpd-vhosts.conf 中配置】
# port:19439
serveradmin [email protected]
servername localhost:19439
hostnamelookups off
documentroot "d:/wamp/www_android/"
options followsymlinks
allowoverride all
order deny,allow
deny from all
options indexes followsymlinks
allowoverride all
order allow,deny
allow from all
#-------------------------------------
serveradmin [email protected]
servername localhost:19440
hostnamelookups off
documentroot "d:/wamp/www_ios/"
options followsymlinks
allowoverride all
order deny,allow
deny from all
options indexes followsymlinks
allowoverride all
order allow,deny
allow from all
【方法2:直接在httpd.conf中配置】
# port:19439
serveradmin [email protected]
servername localhost:19439
hostnamelookups off
documentroot "d:/wamp/www_android/"
options followsymlinks
allowoverride all
order deny,allow
deny from all
options indexes followsymlinks
allowoverride all
order allow,deny
allow from all
# port:19440
serveradmin [email protected]
servername localhost:19440
hostnamelookups off
documentroot "d:/wamp/www_ios/"
options followsymlinks
allowoverride all
order deny,allow
deny from all
options indexes followsymlinks
allowoverride all
order allow,deny
allow from all
wampserver2 0配置本機專案
安裝memcache命令 memcached.exe d install 啟動memcache命令 memcached.exe d start 3.編輯.wamp bin apache apache2.2.11 conf extra目錄下的httpd vhosts.conf檔案中的 serverad...
wampserver如何配置。
1.配置php,搜尋php.ini檔案 找到 short open tag off,改為on 2.搜尋http.conf檔案 找到 include conf extra httpd vhosts.conf,去掉前邊的 號 3.搜尋httpd vhosts.conf檔案,最後加入類似內容 檔案路徑是自...
WampServer配置說明
注意 所有的修改操作都要重啟wampserver伺服器,部分需要重啟wampserver軟體 1 修改預設埠 1 開啟檔案 c wamp bin apache apache2.4.9 conf httpd.conf 2 修改預設埠,並重新重啟服務。listen 12.34.56.78 8088 li...