php虛擬主機的配置
一、找到檔案httpd.conf
找到# virtual hosts下邊的一行#include conf/extra/httpd-vhosts.conf
去掉前邊的注釋符號
二、找到這個檔案conf/extra/httpd-vhosts.conf在檔案最後新增一段**
#新增部分 配置虛擬主機
documentroot "d:/phpproject/web"
directoryindex index.html index.php
options followsymlinks
allowoverride none
order deny,allow
deny from all
三、找到c:\windows\system32\drivers\etc\hosts檔案新增一行**
如果想讓乙個ip配置多個虛擬主機則:
方案一:埠區別
在和第二步一樣再寫一段**如下所示:
1>
documentroot "d:/phpproject/web"
directoryindex index.html index.php
options followsymlinks
allowoverride none
order deny,allow
deny from all
只不過需要換個埠,然後修改httpd.conf檔案找到#listen
在下邊新增:
listen 80
listen 81
讓apache監聽多個埠
最後修改hosts
檔案再加一行
127.0.0.1 localhost
127.0.0.1 www.darren.com
127.0.0.1
www.hello.com
方案二:severname區別
找到這個檔案conf/extra/httpd-vhosts.conf在檔案最後新增一段**
#新增部分 配置虛擬主機
servername
區別方式不同的網域名稱對應不同的
servername
documentroot "d:/phpproject/web"
servername www.darren.com
directoryindex index.html index.php
options followsymlinks
allowoverride none
order allow,deny
allow from all
documentroot "d:/phpproject/webt"
servername www.hello.com
directoryindex index.html index.php
options followsymlinks
allowoverride none
order allow,deny
allow from all
PHP 虛擬主機配置
wamp 環境下 1.首先建vhost 資料夾,資料夾裡面建檔案leshowtest.conf vhost 檔案位置 圖一 leshowtest.conf 檔案裡面配置 documentroot e wamp www ttmv dev home servername live.ttmv.com se...
php多虛擬主機配置
一 配置httpd.conf 取消這一行的 二 配置httpd vhosts.conf檔案 1.多ip模式 documentroot e www htdocs 虛擬主機資料夾 servername 127.0.0.1 訪問ip位址 documentroot e www htdocsa servern...
Mac配置PHP虛擬主機
一 啟動apache 終端輸入 sudo apachectl start apache的安裝目錄在 etc apache2 etc預設是隱藏的。有三種方式檢視 1.桌面位於finder時 shift command g,輸入 etc 即finder 前往 前往資料夾的快捷鍵 2.開啟終端 cd et...