欢迎来到IDC91站长网!
解决服务器各种技术问题,加微信uecomzsr

Linux

当前位置: IDC91 > 服务器教程 > Linux

分享三种Apache配置虚拟主机的方式

时间:2022-05-27 00:14:00|栏目:Linux|点击:

一、基于IP

1. 假设服务器有个IP地址为192.168.1.10,使用ifconfig在同一个网络接口eth0上绑定3个IP:

[root@localhost root]# ifconfig eth0:1 192.168.1.11
[root@localhost root]# ifconfig eth0:2 192.168.1.12
[root@localhost root]# ifconfig eth0:3 192.168.1.13

2. 修改hosts文件,添加三个域名与之一一对应:

192.168.1.11 www.test1.com
192.168.1.12 www.test2.com
192.168.1.13 www.test3.com
3. 建立虚拟主机存放网页的根目录,如在/www目录下建立test1、test2、test3文件夹,其中分别存放1.html、2.html、3.html

/www/test1/1.html
/www/test2/2.html
/www/test3/3.html

4. 在httpd.conf中将附加配置文件httpd-vhosts.conf包含进来,接着在httpd-vhosts.conf中写入如下配置:


  ServerName www.test1.com
  DocumentRoot /www/test1/
  
     Options Indexes FollowSymLinks
     AllowOverride None
     Order allow,deny
     Allow From All
   



  ServerName www.test1.com
  DocumentRoot /www/test2/
  
     Options Indexes FollowSymLinks
     AllowOverride None
     Order allow,deny
     Allow From All
   



  ServerName www.test1.com
  DocumentRoot /www/test3/
  
     Options Indexes FollowSymLinks
     AllowOverride None
     Order allow,deny
     Allow From All
   


上一篇:如何配置Apache服务器中的虚拟机

栏    目:Linux

下一篇:Centos7 Mysql 5.6 多主一从 解决方案与详细配置

本文标题:分享三种Apache配置虚拟主机的方式

本文地址:https://idc91.com/fuwuqizl/2521.html

广告投放 | 联系我们 | 免责申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

Copyright © 2023 IDC91.COM 版权所有晋ICP备17006296号