為Apache配置虛擬機器Virtual Host

2022-04-09 20:59:27 字數 620 閱讀 5377

配置虛擬機器最少需要修改兩個檔案,即httpd-vhosts.conf 和 hosts

(記住修改任何配置前先備份哦,這才是個好習慣)

第一步,修改httpd-vhosts.conf檔案,

檔案路徑 \apache\conf\extra\

在檔案底部加入下面這段

//複製下面的例子

namevirtualhost *:80

servername sample.test

documentroot "這裡填你的**根目錄"

options indexes followsymlinks includes execcgi

allowoverride all

require all granted

第二步,修改hosts檔案,

檔案路徑 c:\windows\system32\drivers\etc

在檔案底部加入這段,

127.0.0.20	sample.test

上面的網域名稱只要是1~127不重複就行,網域名稱要跟上面httpd-vhosts.conf 中的servername對應。

重啟apache, 在瀏覽器輸入 測試一下

apache配置虛擬機器

1 開啟 apache 安裝目錄下的 搜尋virtual hosts,可以看到 意思是啟用虛擬主機的設定檔案httpd vhosts.conf 虛擬主機的設定都在這個檔案下 設定,改為 2 開啟 apache 安裝目錄下的 搜尋可看到 serveradmin webmaster dummy host...

配置Apache虛擬機器

一 安裝apache,或apache程式整合包 二 配置網域名稱 開啟httpd.conf,修改主配置檔案,include conf extra httpd vhosts.conf,把 去掉 三 設定網域名稱對映同乙個ip,修改hosts 開啟c windows system32 drivers e...

Apache 虛擬機器簡單配置

配置方法 1,修改httpd.conf檔案,去掉 include conf extra httpd vhosts.conf前面的 讓httpd.conf包含httpd vhosts.conf檔案 2,修改httpd vhosts.conf檔案,新增虛擬機器 監聽的埠 serveradmin webm...