如何配置Apache服務(wù)器中的虛擬機(jī)
Apache 的虛擬主機(jī)就是在一臺(tái)服務(wù)器上運(yùn)行多個(gè)網(wǎng)站,每個(gè)虛擬主機(jī)都可以綁定獨(dú)立的域名,為這些域名可以指定單獨(dú)的目錄,訪問(wèn)這些域名的時(shí)候,Apache 會(huì)打開(kāi)對(duì)應(yīng)目錄里面的東西。配置 Apache 的虛擬主機(jī),只需要去修改 Apache 的配置文件。虛擬主機(jī)的英文是 virtual host,所以,你的 Apache 配置虛擬主機(jī)的文件可能是 httpd.conf ,也可能是跟 virtual host 這個(gè)名字相關(guān)的文件,比如 vhost.conf ,具體要使用哪一個(gè)配置文件,你需要自己去判斷。
新浪微博虛擬機(jī)開(kāi)發(fā)配置步驟及介紹。
1、由于后面虛擬機(jī)中需要用到Rewrite所以先編輯Apache的conf目錄下的httpd.conf文件。(可根據(jù)實(shí)際需要操作)
添加mod_rewrite.so模塊支持。去掉下列行中前面的#號(hào)。
LoadModule rewrite_module modules/mod_rewrite.so
2、配置apache支持虛擬機(jī)。這一步很重要。
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
找到 上面相關(guān)文本,去掉#Include conf/extra/httpd-vhosts.conf前的#。
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
保存退出。
3、編輯conf目錄下extra文件夾下的httpd-vhosts.conf。
去掉實(shí)例配置,添加新有配置。以新浪微博為例,配置文件如下:
# # Virtual Hosts # # If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # <URL:http://httpd.apache.org/docs/2.2/vhosts/> # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # Use name-based virtual hosting. # NameVirtualHost *:80 # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for all requests that do not # match a ServerName or ServerAlias in any <VirtualHost> block. # <VirtualHost *:80> #管理員郵箱 ServerAdmin jiangfeng3@staff.sina.com.cn #項(xiàng)目根目錄 DocumentRoot "D:/htdocs/frame_export" #域名 ServerName test.t.sina.com.cn #別名 ServerAlias test.t.sina.com.cn #錯(cuò)誤日志路徑 ErrorLog "logs/test.t.sins.com.cn-error.log" CustomLog "logs/test.t.sins.com.cn-access.log" common RewriteEngine on #重寫(xiě)規(guī)則,可根據(jù)實(shí)際需要添加 RewriteRule ^/(.*)$ /apps/index.php [L] </VirtualHost>
4、編輯本地host文件,以windows為例
進(jìn)入C:/Windows/System32/drivers/etc
記事本打開(kāi)hosts文件
最后添加
127.0.0.1 localhost
127.0.0.1 test.t.sina.com.cn
例子:
# Copyright (c) 1993-2009 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed by the corresponding host name. # The IP address and the host name should be separated by at least one # space. # # Additionally, comments (such as these) may be inserted on individual # lines or following the machine name denoted by a '#' symbol. # # For example: # # 102.54.94.97 rhino.acme.com # source server # 38.25.63.10 x.acme.com # x client host # localhost name resolution is handled within DNS itself. 127.0.0.1 localhost # ::1 localhost 127.0.0.1 test.t.sina.com.cn
保存退出
5、重啟apache,瀏覽器輸入http://test.t.sina.com.cn
關(guān)于apache虛擬機(jī)服務(wù)器配置小編就給大家介紹這么多,希望對(duì)大家有所幫助!
相關(guān)文章
Linux服務(wù)器間文件實(shí)時(shí)同步的實(shí)現(xiàn)
這篇文章主要介紹了Linux服務(wù)器間文件實(shí)時(shí)同步的實(shí)現(xiàn),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-11-11CentOS下RabbitMq高可用集群環(huán)境搭建教程
這篇文章主要為大家詳細(xì)介紹了CentOS下RabbitMq高可用集群環(huán)境搭建教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-08-08CentOS 7.6安裝MySQL 5.7 GA版的教程圖解
本文通過(guò)圖文并茂的形式給大家介紹了CentOS 7.6安裝MySQL 5.7 GA版,需要的朋友可以參考下2019-09-09在Linux中查看及終止正在運(yùn)行的后臺(tái)程序方法
今天小編就為大家分享一篇在Linux中查看及終止正在運(yùn)行的后臺(tái)程序方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-07-07Linux expect實(shí)現(xiàn)自動(dòng)登錄腳本實(shí)例代碼
expect是一個(gè)基于Tcl的用于自動(dòng)交互操作的工具語(yǔ)言,它適合用來(lái)編寫(xiě)需要交互的自動(dòng)化腳本,比如上面提到的SSH輸入用戶名密碼,自動(dòng)FTP等等場(chǎng)景。下面這篇文章主要給大家介紹了關(guān)于Linux expect實(shí)現(xiàn)自動(dòng)登錄腳本的相關(guān)資料,需要的朋友可以參考下。2018-03-03Linux環(huán)境下Apache服務(wù)器配置二級(jí)域名的方法詳解
這篇文章主要介紹了Linux環(huán)境下Apache服務(wù)器配置二級(jí)域名的方法,結(jié)合具體實(shí)例形式較為詳細(xì)的分析了Linux環(huán)境下Apache服務(wù)器配置二級(jí)域名的具體步驟與相關(guān)操作技巧,需要的朋友可以參考下2019-07-07