博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
win 下 apache 虚拟主机配置方式
阅读量:5897 次
发布时间:2019-06-19

本文共 1707 字,大约阅读时间需要 5 分钟。

虚拟主机的配置在apache安装目录下/conf/extra/httpd-vhosts.conf文件中,需要在/conf/httpd.conf中开启。
LoadModule vhost_alias_module modules/mod_vhost_alias.soInclude conf/extra/httpd-vhosts.conf
1、基于IP地址的虚拟主机 (*服务器有多个IP地址)
DocumentRoot D:/wwwroot/site1 ServerName www.site1.com
Options Indexes FollowSymLinks     AllowOverride None     Order allow,deny     Allow From All
DocumentRoot D:/wwwroot/site2 ServerName www.site2.com
Options Indexes FollowSymLinks     AllowOverride None     Order allow,deny     Allow From All
2、基于IP地址和多端口 (*分别绑定8080和8088端口)
Listen 127.0.0.1:8080
DocumentRoot D:/wwwroot/site1 ServerName www.site1.com
Listen 127.0.0.1:8088
DocumentRoot D:/wwwroot/site2 ServerName www.site2.com
3、单IP地址基于域名的虚拟主机
Listen 80NameVirtualHost *:80
DocumentRoot D:/wwwroot/site1 ServerName www.site1.com
DocumentRoot D:/wwwroot/site2 ServerName www.site2.com
4、多IP地址基于域名的虚拟主机
DocumentRoot D:/wwwroot/site1 ServerName www.site1.com
DocumentRoot D:/wwwroot/site2 ServerName www.site2.com
5、多端口配置基于域名的虚拟主机
Listen 80
DocumentRoot D:/wwwroot/site1 ServerName www.site1.com
Listen 8080
DocumentRoot D:/wwwroot/site2 ServerName www.site2.com
6、基于域名和基于IP 的混合虚拟主机
Listen 80NameVirtualHost 192.168.1.1
DocumentRoot D:/wwwroot/site1 ServerName www.site1.com
Listen 8080
DocumentRoot D:/wwwroot/site2 ServerName www.site2.com

 

 

转载地址:http://ytxsx.baihongyu.com/

你可能感兴趣的文章
Apple Developer Registration and DUNS Number Not Accepted
查看>>
Hadoop学习笔记系列文章导航
查看>>
转一贴,今天实在写累了,也看累了--【Python异步非阻塞IO多路复用Select/Poll/Epoll使用】...
查看>>
Codeforces Round #290 (Div. 2) C. Fox And Names dfs
查看>>
iOS开发-NSOperation与GCD区别
查看>>
扩展方法使用
查看>>
Win7 64位 php-5.5.13+Apache 2.4.9+mysql-5.6.19 配置
查看>>
HOJ 2245 浮游三角胞(数学啊 )
查看>>
spring mvc 和ajax异步交互完整实例
查看>>
不同页面之间实现参数传递的几种方式讨论
查看>>
程序员进阶之路—如何独当一面
查看>>
SpringMVC中ModelAndView addObject()设置的值jsp取不到的问题
查看>>
Prometheus : 入门
查看>>
使用 PowerShell 创建和修改 ExpressRoute 线路
查看>>
PHP如何学习?
查看>>
谈教育与成长
查看>>
jni c++
查看>>
快速集成iOS基于RTMP的视频推流
查看>>
在C#中获取如PHP函数time()一样的时间戳
查看>>
Redis List数据类型
查看>>