apache 虚拟主机配置

简介: 1. wondows xp + apmserv 5.2.6 端口8088 2.httpd.config文件   1. ServerRoot       "D:/APMServ/APMServ5.2.

1. wondows xp + apmserv 5.2.6 端口8088

2.httpd.config文件

  1. ServerRoot       "D:/APMServ/APMServ5.2.6/Apache"  

    Listen          8088 

    ServerName     127.0.0.1:8088

    DocumentRoot   "D:/APMServ/APMServ5.2.6/www/"

    (原文未变)

  2.要么将几台<virtualhost>标签全放在 D:\APMServ\APMServ5.2.6\Apache\conf\apmserv\vhost.conf 文件中(谁在前谁是默认的虚拟主机)

    被httpd.config包含 ,要么将他们全部写在httpd.config中 (若有更多台虚拟主机可按原样改动后添加)

NameVirtualHost *:8088
<VirtualHost *:8088>
 ServerName www.test.com
 ServerAlias *.test.com
 DocumentRoot "D:/APMServ/APMServ5.2.6/www/test"
<Directory "D:/APMServ/APMServ5.2.6/www/test"> 
 Options FollowSymLinks IncludesNOEXEC Indexes
 DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml
 AllowOverride None 
 Order Deny,Allow 
 Allow from all 
</Directory>
</VirtualHost>

NameVirtualHost *:8088
<VirtualHost *:8088>
 ServerName www.testone.com
 ServerAlias *.testone.com
 DocumentRoot "D:/APMServ/APMServ5.2.6/www/testone"
<Directory "D:/APMServ/APMServ5.2.6/www/testone"> 
 Options FollowSymLinks IncludesNOEXEC Indexes
 DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml
 AllowOverride None 
 Order Deny,Allow 
 Allow from all 
</Directory>
</VirtualHost>

3.C:\WINDOWS\system32\drivers\etc\hosts 文件用文本编辑器打开添加下边内容(若有更多台虚拟主机可按原样改动后添加)

    127.0.0.1 localhost
    127.0.0.1 testone.com
    127.0.0.1 www.testone.com
    127.0.0.1 testtwo.com
    127.0.0.1 www.testtwo.com

4.本机打开任意浏览器 输入URL www.test.com 或者 www.testone.com 会显示出 D:/APMServ/APMServ5.2.6/www/test 或者 "D:/APMServ/APMServ5.2.6/www/testone 中的  默认页(index.php 或index.html……)

目录
相关文章
|
1月前
|
Linux 网络安全 Apache
CentOS 7.2配置Apache服务httpd(上)
CentOS 7.2配置Apache服务httpd(上)
191 1
|
30天前
|
存储 分布式计算 druid
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(一)
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(一)
38 1
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(一)
|
27天前
|
缓存 前端开发 应用服务中间件
CORS跨域+Nginx配置、Apache配置
CORS跨域+Nginx配置、Apache配置
106 7
|
30天前
|
消息中间件 分布式计算 druid
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(二)
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(二)
39 2
|
30天前
|
存储 消息中间件 druid
大数据-151 Apache Druid 集群模式 配置启动【上篇】 超详细!
大数据-151 Apache Druid 集群模式 配置启动【上篇】 超详细!
74 1
|
1月前
apache+tomcat配置多站点集群的方法
apache+tomcat配置多站点集群的方法
32 4
|
1月前
|
负载均衡 应用服务中间件 Apache
Tomcat负载均衡原理详解及配置Apache2.2.22+Tomcat7
Tomcat负载均衡原理详解及配置Apache2.2.22+Tomcat7
35 3
|
1月前
|
Linux PHP Apache
CentOS 7.2配置Apache服务httpd(下)
CentOS 7.2配置Apache服务httpd(下)
47 1
|
1月前
|
存储 Apache 开发工具
apache的主要目录结构及常见的配置选项的详细说明(图例展示)
apache的主要目录结构及常见的配置选项的详细说明(图例展示)
|
3月前
|
Ubuntu 应用服务中间件 Linux
在Linux中,如何配置Web服务器(如Apache或Nginx)?
在Linux中,如何配置Web服务器(如Apache或Nginx)?

推荐镜像

更多