apache 多站點設定攻略

2021-05-25 07:48:47 字數 1764 閱讀 8017

修改apache的配置檔案httpd.conf

———————————————————

listen 172.20.30.40:80

listen 172.20.30.40:8080

listen 172.20.30.50:80

listen 172.20.30.50:8080

documentroot /www/example1-80

servername www.example1.com

documentroot /www/example1-8080

servername www.example1.com

documentroot /www/example2-80

servername www.example1.org

documentroot /www/example2-8080

servername www.example2.org

————————————————————

———————————————————–

documentroot 「/usr/local/apache/a」

servername www.a.com

serveralias a.com

directoryindex index.html index.php

namevirtualhost 192.168.1.2:80

documentroot 「/usr/local/apache/b」

servername www.b.com

serveralias b.com

directoryindex index.php

documentroot 「/usr/local/apache/c」

servername www.c.com

serveralias c.com

directoryindex index.php

—————————————————————

—————————————————————

listen 80

namevirtualhost 192.168.1.15 #接收請求的ip位址

#繫結的ip

serveradmin [email protected] #管理員郵箱

documentroot 「d:/inetpub/www/maidou/」 #**目錄

servername www.test.com #主機名(網域名稱)

directoryindex index.php #主目錄預設頁

serveralias test.other.com admin.other.com #做出響應的網域名稱

errorlog logs/error_log.log #錯誤日誌

customlog logs/custom.log common #使用者日誌

options indexes followsymlinks

allowoverride all #allowoverride指明apache伺服器是否載入.htacess

order allow,deny

allow from all

# 多台可以再新增

documentroot 「d:/inetpub/www/other/」

servername www.other.com

options indexes followsymlinks

allowoverride all

order allow,deny

allow from all

Apache 多網域名稱多站點設定

httpd.conf 檔案 找到serveradmin 前面打上 不含雙引號 也就是把這段注釋掉.找到documentroot d program files apache2.2 htdocs 這個是你安裝apache的位置,自己應該曉得 把這段也打上 注釋掉.假如,虛擬空間的各個站點都在d盤的ww...

Apache多站點配置

使用本地ip 埠號,或者修改hosts檔案 網域名稱的方法來進行本地多站點web除錯。127.0.0.1 www.def.com 上邊是使用網域名稱的方法。下邊說下如何使用本地ip 埠的方法。例如本機ip為 192.168.0.10 那如何控制 80 1000 1001 1002 來訪問不同的檔案目...

apache多站點配置

首先開啟apache安裝目錄下 conf httpd.conf 檔案,找到下面兩行文字,把最前面的 號去掉,然後儲存。再找到 conf extra httpd vhosts.conf,虛擬主機配置檔案 serveradmin webmaster dummy host.example.com docu...