Linux Apache多站点配置

1.环境搭建(参考本站的配置文章)
2.编写配置文件
cd /etc/httpd/conf
vi httpd.conf
在httpd.conf的文件末尾加上
Include /etc/httpd/conf/vhost.conf
同时在 /etc/httpd/conf/conf目录下,vi vhost.conf 
内容如下:
NameVirtualHost *:80

    ServerName itzls.com
    ServerName www.itzls.com
    DocumentRoot "/var/www/html"
   /var/www/html">
    allow from all
   
    DirectoryIndex index.php index.html


    ServerName shop.itzls.com
    DocumentRoot "/var/www/html/shop"
   var/www/html/shop"">
    allow from all
   
    DirectoryIndex index.html index.php


首先第一个,解析一级域名到根目录下,后面才是解析二级域名到子目录

你可能感兴趣的:(Linux)