Apache將伺服器的不同埠繫結不同的站點

2021-12-30 04:37:30 字數 1078 閱讀 1576

我在d:/0oes下面建立了四個資料夾:

然後,我希望將伺服器的不同埠與其進行繫結。

collegeoes對應80埠 schooloes對應90埠 collegeres對應8080埠 schoolres對應9090埠

開啟httped.conf

在httped.conf的最後新增:

listen 90

serveradmin [email protected]

documentroot d:\0oes\schooloes

servername *:90

options all

allowoverride all

order allow,deny

allow from all

listen 8080

serveradmin [email protected]

documentroot d:\0oes\collegeres

servername *:8080

options all

allowoverride all

order allow,deny

allow from all

listen 9090

serveradmin [email protected]

documentroot d:\0oes\schooloes

servername *:9090

options all

allowoverride all

order allow,deny

allow from all

將documentroot c:\wamp\www 修改為 d:\0oes\collegeoes

將 修改為

現在,通過localhost或者127.0.0.1後面加冒號埠號就可以訪問不同的**了。

伺服器 apache啟用多個埠的方法

apache啟用多個埠的方法 使用本地ip 埠號,或者修改hosts檔案 網域名稱的方法來進行本地多站點web除錯。注意這裡是用apache 不是iis 2 修改本機的hosts檔案,如下 示例 127.0.0.1 localhost 127.0.0.1 url www.dede.com url 1...

伺服器安裝apache伺服器

1.環境 centos7 2.鏈結伺服器 ssh username ip 3.安裝apache 4.設定apache在伺服器啟動時執行 5.在apache配置檔案中設定網域名稱 vi etc httpd conf httpd.conf,找到 servername 新增 網域名稱 80 儲存並退出。6...

遠端伺服器配置不同的埠使用visdom視覺化

我參考這位博主的部落格,完成了遠端伺服器程式,使用visdom在本地視覺化 但是這是採用的預設埠8097 我嘗試以下方法遠端伺服器配置不同的埠使用visdom視覺化,且能夠成功.1 假設選用埠2019 2 在本地終端 ssh l 127.0.0.1 2019 127.0.0.1 2019 usern...