Apache 环境配置
在配置Apache环境之虚拟目录的建立时,我的步骤如下:1.添加一个虚拟目录的节点(242行)
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
#配置虚拟目录
<IfModule dir_module>
#directory相当于是欢迎页面
DirectoryIndex news.html index.html index.htm index.php
#你的站点别名
Alias/myblog "D:/myblog"
<Directory d:/myblog>
#这是访问权限设置
Order allow,deny
Allow from all
<Directory>
</IfModule>
2.注销documentroot路径(179行)
#DocumentRoot "D:/Server/Apache/htdocs"
我在D盘建立了一个文件夹叫myblog,里面有一个html文件叫news.
Apache本来是打开的,这样修改后,重启Apache就出现了错误。请问这是为什么啊?(跟视频里面输入的一样啊?!!)