深圳市恆訊科技分享:apache配置多ip虛擬機器的2種方法

恆訊科技發表於2021-06-24

第一種-透過設定不同的埠來配置

1建立一個目錄,作為介面

2設定apche虛擬主機(不用配置虛擬目錄對映)

httpd.conf開啟虛擬主機配置,接著到httpd-vhosts.conf裡面設定

//這裡改變埠

DocumentRoot "D:/myblog" //這個就是第一步建立的介面

DirectoryIndex index.html index.htm index.php

Options FollowSymLinks

Allowoverride None

order Allow,deny

Allow from all

DocumentRoot "D:/baidu"

DirectoryIndex index.html index.htm index.php

Options FollowSymLinks

Allowoverride None

order Allow,deny

Allow from all

3-到httpd.conf檔案裡面修改監聽埠

Listen 80

Listen 81

4-到host檔案裡面修改對映.登入網站時候記得加埠號。


第二種方法:透過ServerName配置

1建立一個目錄,作為介面

2設定apche虛擬主機(不用配置虛擬目錄對映)

httpd.conf開啟虛擬主機配置,接著到httpd-vhosts.conf裡面設定

//記得ip必須為*否則不行的

DocumentRoot "D:/myblog" //目錄

ServerName //域名

DirectoryIndex index.html index.htm index.php

Options FollowSymLinks

Allowoverride None

order Allow,deny

Allow from all

DocumentRoot "D:/baidu"

ServerName

DirectoryIndex index.html index.htm index.php

Options FollowSymLinks

Allowoverride None

order Allow,deny

Allow from all

3重啟apache。就可以了,當然要配置hosts

以上就是恆訊科技分享:apache配置多ip虛擬機器的2種方法,希望能幫助到大家。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69983369/viewspace-2778185/,如需轉載,請註明出處,否則將追究法律責任。

相關文章