80埠(通過多網域名稱的方式)配置多站點的方法

2021-08-06 04:34:47 字數 1653 閱讀 9795

documentroot

"f:\website_one"

servername

example1.com.cn

serveralias example1.com.cn

options

followsymlinks execcgi

allowoverride

allorder

allow,deny

allow

from all

require

all granted

documentroot

"f:\website_two"

servername

example2.com.cn

serveralias example2.com.cn

options

followsymlinks execcgi

allowoverride

allorder

allow,deny

allow

from all

require

all granted

documentroot

"e:\website_three"

servername

example3.com.cn

serveralias example3.com.cn

options

followsymlinks execcgi

allowoverride

allorder

allow,deny

allow

from all

require

all granted

通過如上方式即可到達多站點(example1.com.cn, example2.com.cn , example3.com.cn)同時使用80埠的目的。[有個前提是:這些網域名稱必須已經成功解析到該台伺服器的ip]

2、另外乙個問題:

如果通過多網域名稱配置多站點,總是進入第乙個站點,那麼需要在配置前新增乙個設定:

namevirtualhost *:80
如下中的兩行(為了記錄日誌):

errorlog "logs/xiangmu4-error.log"

customlog "logs/xiangmu4-access.log"

common

完整配置參考:

documentroot

"e:/xiangmu4"

servername

example4.com.cn

directoryindex index.html index.php

options

followsymlinks

allowoverride

allorder

allow,deny

allow

from all

errorlog

"logs/xiangmu4-error.log"

customlog

"logs/xiangmu4-access.log" common

Nginx多網域名稱共享80埠配置

前段時間搭建了兩個 分別是桌布 和個人blog。以這兩個 為例介紹一下如何用乙個nginx配置多個網域名稱共享80埠。已有資源 伺服器 118.24.51.89 頂級網域名稱 yypic.top 二級網域名稱 blog.yypic.top 首先需要設定網域名稱解析 在網域名稱管理控制台新增兩條解析記...

apache配置多埠 多網域名稱 多子網域名稱

比如要配置監聽多埠 修改 conf httpd.conf,監聽80 8787埠 listen 80 listen 8787 比如要配置多網域名稱 修改 conf httpd.conf,在最後include虛擬主機檔案 建議 多網域名稱,多子網域名稱 serveralias www.com 1.com...

XAMPP Apache 配置多埠和多網域名稱方法

我們在工作中經常遇到同時除錯多個 的情況,那麼如何配置呢?就像平時訪問 一樣,a.com 與 b.com 截然不同。這都是常見現象,如果在區域網中要訪問另外一台電腦上的多個 就需要使用 形式訪問,而不是 http localhost http 協議預設埠號是 80,如果我們可以設定不同的埠號,讓伺服...