深圳市金黑网络技术有限公司始终坚持以用户需求为导向,提供安全、稳定、高效的产品和服务!
签到 · 搜索导航 · 服务热线 · 微信/手机:17817817816

深圳网站建设

查看: 869|回复: 0

[windows] 虚拟主机配置

[复制链接]

UID
1
贡献
844
金币
1540
主题
520
在线时间
333 小时
注册时间
2022-1-15
最后登录
2024-11-12
QQ
发表于 2022-11-21 10:25:45 | 869 | 0 | 显示全部楼层 |阅读模式
需求:
  1. 输入www.baidu.com        打开web1的网站
  2. 输入www.sina.com打开web2的网站
复制代码
配置过程:
要配置虚拟主机,需要在httpd.conf中引入虚拟主机的培训文件(vhosts.conf)

虚拟主机配置

虚拟主机配置

vhosts.conf配置如下
  1. <VirtualHost _default_:80>
  2.   DocumentRoot "C:\web1"       #指定虚拟目录路径
  3.   ServerName www.baidu.com     # 虚拟目录绑定的域名
  4.   DirectoryIndex aa.php        # 默认首页
  5.   <Directory "C:\web1">
  6.     Options -Indexes -FollowSymLinks +ExecCGI
  7.     AllowOverride All
  8.     Order allow,deny
  9.     Allow from all
  10.     Require all granted
  11.   </Directory>
  12. </VirtualHost>


  13. <VirtualHost _default_:80>
  14. DocumentRoot "C:\web2"
  15. ServerName www.sina.com
  16. DirectoryIndex bb.php
  17.   <Directory "C:\web2">
  18.     Options -Indexes -FollowSymLinks +ExecCGI
  19.     AllowOverride All
  20.     Order allow,deny
  21.     Allow from all
  22.     Require all granted
  23.   </Directory>
  24. </VirtualHost>
复制代码

虚拟主机配置

虚拟主机配置


楼主热帖

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

快速回复 返回顶部 返回列表