如何从Apache Web服务器在浏览器中打开默认页面..?

时间:2015-02-17 09:03:54

标签: java apache apache2 webserver

我已启动Apache Web服务器并将所有必需的配置放在httpd.conf文件中,如

 DocumentRoot "c:/Apache2/htdocs"
 <Directory "c:/Apache2/htdocs">
 <Directory> DirectoryIndex

当我在浏览器中打开localhost时,它不会打开存储在htdocs目录中的index.html文件。有人可以建议我在这里缺少什么,在此先感谢。

1 个答案:

答案 0 :(得分:0)

最后你必须写下'index.html'文件的名称

 DocumentRoot "c:/Apache2/htdocs"
 <Directory "c:/Apache2/htdocs">
 <Directory> DirectoryIndex index.html