首页 > 其他 > 详细

apache虚拟主机配置

时间:2014-07-15 10:51:10      阅读:417      评论:0      收藏:0      [点我收藏+]

httpd.conf文件中配置一台www.sohu.cn的虚拟主机,然后在window系统中注册www.sohu.cn这台主机。

 

 httpd.conf 文件中启用 httpd-vhosts.conf

就是把#注销掉

# Virtual hosts ,虚拟主机

Include conf/extra/httpd-vhosts.conf

 

 假设我们的虚拟主机在 f:/myweb 盘 [该站点,事先有]

 设置http-vhosts.conf文件

#配置我们自己的虚拟主机

<VirtualHost127.0.0.1:80>

    DocumentRoot "d:/myblog"

    #这里配置欢迎首页面

    DirectoryIndex index.html index.htmindex.php

    <Directory />

    Options FollowSymLinks

    #不许可别人修改我们的页面

    AllowOverride None

    #设置访问权限

    Order allow,deny

    Allow from all

    </Directory>

</VirtualHost>

4. hosts文件中添加我们的ip 和主机映射关系

 

c:/windows/system32/drivers/etc/hosts

 

127.0.0.1             www.sohu.cn



apache虚拟主机配置,布布扣,bubuko.com

apache虚拟主机配置

原文:http://keyue.blog.51cto.com/6559543/1438238

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!