二月飞

学学更健康

2013年8月11日

apache虚拟主机配置

摘要: 1.启用httpd-vhosts.conf在 httpd.conf 文件中# Virtual hosts ,虚拟主机Include conf/extra/httpd-vhosts.conf2. 在httpd-vhosts.conf文件中做配置 1 #配置我们自己的虚拟主机 2 4 5 DocumentRoot "d:/myblog" 6 7 #这里配置欢迎首页面 8 9 DirectoryIndex index.html index.htm index.php10 11 12 13 Options FollowSymLinks14 15 #不... 阅读全文

posted @ 2013-08-11 21:58 二月飞 阅读(130) 评论(0) 推荐(0) 编辑

apache的虚拟目录的配置

摘要: 第一步:在httpd.conf底部添加以下代码。表示添加虚拟目录 1 2 3 #direcotory相当于是欢迎页面 4 DirectoryIndex index.html index.htm index.php 5 #你的站点别名 6 Alias /myblog "D:/myblog" 7 8 #这是访问权限设置 9 Order allow,deny10 Allow from all11 12 当我们配置虚拟目录时需要在apache目录下的httpd.conf文件最后添加以上代码。第二步:注销documentroot路径#Docu... 阅读全文

posted @ 2013-08-11 21:50 二月飞 阅读(178) 评论(0) 推荐(0) 编辑

导航