这篇文章将为大家详细讲解有关如何配置Apache服务器中的虚拟机,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
1 | ## 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 #项目根目录 DocumentRoot "D:/htdocs/frame_export" #域名 ServerName test.t.sina.com.cn #别名 ServerAlias test.t.sina.com.cn#错误日志路径ErrorLog "logs/test.t.sins.com.cn-error.log"CustomLog "logs/test.t.sins.com.cn-access.log" commonRewriteEngine on#重写规则,可根据实际需要添加RewriteRule ^/(.*)$ /apps/index.PHP [L]</VirtualHost>
|
编辑本地host文件,以windows为例
进入C:/Windows/System32/drivers/etchttp://www.bbqmw.net/
记事本打开hosts文件
最后添加
127.0.0.1 localhost
127.0.0.1 test.t.sina.com.cn
例子:
1 | # 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 localhost127.0.0.1 test.t.sina.com.cn
|
关于如何配置Apache服务器中的虚拟机就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
0