码迷,mamicode.com
首页 > 其他好文 > 详细

lampp服务器配置httpd-vhosts.conf文件,设置多域名

时间:2014-08-26 13:19:06      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   文件   div   log   amp   

首先,修改/opt/lampp/etc/httpd.conf文件,开启虚拟主机功能

找到配置项

# Virtual hosts
# Include etc/extra/httpd-vhosts.conf

修改为

# Virtual hosts
Include etc/extra/httpd-vhosts.conf

 

然后,修改:/opt/lampp/etc/extra/httpd-vhosts.conf文件

<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "/home/www/aaa"
    ServerName www.aaa.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error_log"
    CustomLog "logs/dummy-host.example.com-access_log" common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "/home/www/bbb"
    ServerName www.bbb.com
    ErrorLog "logs/dummy-host2.example.com-error_log"
    CustomLog "logs/dummy-host2.example.com-access_log" common
</VirtualHost>

然后,重启apache,按照上面配置后,www.aaa.com对应/home/www/aaa目录;www.bbb.com对应/home/www/bbb目录。

 

lampp服务器配置httpd-vhosts.conf文件,设置多域名

标签:style   blog   http   color   os   文件   div   log   amp   

原文地址:http://www.cnblogs.com/hereim/p/3936839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!