linux centos 配置虚拟主机

https://blog.csdn.net/fly_xiaoba/article/details/49592943

//创建两个网站的目录结构及测试用页面文件

[html] view plain copy

  1. # mkdir /www/test1
  2. # echo "test1" > /www/test1/index.html
  3. # mkdir /www/test2
  4. # echo "test2" > /www/test2/index.html

 

 //配置虚拟机主机

[html] view plain copy

  1. # cd /etc/httpd/
  2. # mkdir vhost-conf.d
  3. # echo "Includevhost-conf.d/*.conf" >> conf/httpd.conf
  4. # vi /etc/httpd/vhost-conf.d/vhost-name.conf

 

//添加如下内容

[html] view plain copy

  1. <VirtualHost *:80>
  2.    ServerName example1.com
  3.    ServerAlias example1.com www.example1.com
  4.    DocumentRoot /var/www/test1/
  5.    DirectoryIndex index.html index.php
  6. </VirtualHost>
  7. <Directory "/var/www/test1/">
  8.    Options +Includes -Indexes
  9.    AllowOverride All
  10.    Order Deny,Allow
  11.    Allow from All
  12. </Directory>
  13. <VirtualHost *:80>
  14.    ServerName example2.com
  15.    ServerAlias example2.com www.example2.com
  16.    DocumentRoot /var/www/test2/
  17.    DirectoryIndex index.html index.php
  18. </VirtualHost>
  19. <Directory "/var/www/test2/“>
  20.    Options +Includes -Indexes
  21.    AllowOverride All
  22.    Order Deny,Allow
  23.    Allow from All
  24. </Directory>

 转载请注明出处:

转载自http://lxfamn.cn/blog

未经允许不得转载:lxfamn » linux centos 配置虚拟主机

赞 (0) 打赏

置顶推荐

评论 0

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

支付宝扫一扫打赏

微信扫一扫打赏