更改Apache虚拟目录

如果C盘没空间,可在其他盘符(如:D盘)新建目录来管理网站

1.在D盘新建文件夹d:/myblog

2.打开httpd.conf文件进行配置
#配置虚拟目录
<IfModule dir_module>
#欢迎页面
DirectoryIndex index.html index.htm index.php
#站点别名
Alias /myblog "D:/myblog"
<Directory d:/myblog>
Order allow,deny
Allow from all
</Directory>
</IfModule>

3.注销DocumentRoot路径(Apache默认访问欢迎页面路径,即http://localhost/)
#"C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"

4.测试
http://localhost/myblog/news.html

5.设置欢迎页面
http://localhost/myblog/
DirectoryIndex news.html index.html index.htm index.php

posted @ 2014-09-11 00:04  ayee  阅读(275)  评论(0编辑  收藏  举报