- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
假定你的服务器网站根目录下有两个子目录,一个为 /appserv/www/web01,另一个为 /appserv/www/web02 。现在你想访问 www.landui.com 对应的目录是 /appserv/www/web01 ,访问 www.landui.com 对应的目录是 /appserv/www/web02。
打开appservapacheconfhttpd.conf文件,搜索 “Include conf/extra/httpd-vhosts.conf”,去掉前面的 # 号,这是为了引入了 httpd-vhosts.conf 虚拟主机配置文件。
打开虚拟主机配置文件appservapacheconfextrahttpd-vhosts.conf:去掉 NameVirtualHost *:80 前面的#号,这是为了启用 httpd-vhosts.conf文件,使原来httpd.conf中默认的配置失效。
在httpd-vhosts.conf里面添加如下代码:
<VirtualHost *:80> DocumentRoot "D:/Appserv/www/web01" #指定要绑定到的目录 ServerName www.landui.com #绑定的域名
#ServerAlias www.landui.com #绑定多个域名到目录web01是使?
</VirtualHost><VirtualHost *:80> DocumentRoot "D:/Appserv/www/web02" #如果要把域名绑定到文件上就这样写:web02/a.html ServerName www.landui.com
#ServerAlias www.landui.com
</VirtualHost>
在httpd-vhosts.conf后面再添加如下代码:
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow allow from all #设置无条件允许访问 Satisfy all</Directory>
不添加时,默认两个域名都只会去找第一个虚拟主机。
在浏览器输入www.landui.com 和www.landui.com你会发现访问的是不同的网站。
售前咨询
售后咨询
备案咨询
二维码
TOP