我爱编程

阿里云ubuntu16.04为apache配置多站点

2017-01-11  本文已影响132人  呦丶耍脾气

前瞻

笔者之前也是用过一段时间的mac和ubuntu虚拟机,不过没有做过实战,这不半年不用都忘记了,哎,老了,记性不好了,多的不说,其实不难,方法很多,这里就介绍一个

开始

<VirtualHost *> 
         ServerAdmin webmaster@localhost 
         ServerName site1.com #将所有的site1.com替换成你自己的域名
         CustomLog   /var/log/apache2/site1.com-access.log combined 
         DocumentRoot /var/www/site1/ 
         <Directory /var/www/site1/> 
                 Options Indexes FollowSymLinks MultiViews 
                 AllowOverride all 
                 Order allow,deny 
                 allow from all 
         </Directory> 
</VirtualHost>

注意:建立软连接需要使用绝对路径,否则在运行apache2 -t时,回报No such file or directory错误

上一篇 下一篇

猜你喜欢

热点阅读