利用apach或者tomat來搭建,也可以使用nginx,本章咱們說的是apache的多個主機的搭建!
找到http.config檔案
第一步:
把namevirtualhost *:80取消注釋
並在檔案尾部加上
include /etc/httpd/conf/vhosts/*.conf
第二步:
在 資料夾conf中加入vhosts目錄
在vhosts目錄下建立兩個以.conf檔名結尾的檔案
在檔案中寫:
options followsymlinks
allowoverride all
order deny,allow
allow from all
directoryindex index.php index.html
documentroot /var/www/html/v1
servername www.a.com
serveralias www.a.com
errorlog logs/acom-error_log
WordPress站點繫結多個網域名稱
refer to 開啟根目錄下的 wp config.php 檔案,找到 require once abspath wp settings.php 在它的前面新增以下 server http host 用於獲得來路網域名稱。這樣,就能根據來路為 wp home 和 wp siteurl 變數賦值,實...
WordPress站點繫結多個網域名稱
refer to 開啟根目錄下的 wp config.php 檔案,找到 require once abspath wp settings.php 在它的前面新增以下 server http host 用於獲得來路網域名稱。這樣,就能根據來路為 wp home 和 wp siteurl 變數賦值,實...
phpStudy 建立多個站點,繫結網域名稱
預設情況下,phpstudy 的站點根目錄是在它自己的www目錄,比如 f phpstudy www,訪問的位址可以是 或 http localhost 下面我們要實現的是建立多個站點,繫結各自的網域名稱,這樣就方便我們進行多個專案的開發,互不影響。注 本文解說的是 phpstudy 完整版的,其他...