apache2+php4+mysql不能正常访问网页

apache2+php4+mysql不能正常访问网页

apache的文档根目录下的index.html文件,本地用浏览器访问localhost时,显示的是源代码文本而不是网页;如果将后缀名改为php即文件名改为index.php,则可以正常显示网页。网页很简单,类似于“Hello world”。是不配制有错误?请高手指点。      
修改/etc/httpd目录下的httpd.conf(已redhat为例,发行版不同会有一些不同)DirectoryIndex段:
复制内容到剪贴板
代码:
<IfModule mod_dir.c>
    DirectoryIndex index.html
</IfModule>
注:index.html是后加上的。
重启httpd即可。      
按照版主的方法也不行,实际上我的问题是APACHE2服务器(我用的是debian)不能对.html后缀的文件正确解析。我在apache2.conf文件中加了一行
AddType application/x-httpd-php .html
则访问localhost时,index.html可以显示正常的网页,但这样作似乎是将不含脚本的普通网页也交给了php去解析,不知是否有更好的方法?      
bwb没注意楼主的问题, 他想把index.html 当成 php 文件使用, 有两个解决方法, 修改
DirectoryIndex index.php
或者添加
AddType application/x-httpd-php .html      
我不是想把index.html 当成 php 文件使用,而是APACHE2服务器不能解析后缀名为.html的普通网页,本地用浏览器访问localhost时显示的是整个源代码文本而不是网页。显示如下:
<html>
<head>
<title>test</title>
</head>
<body>
<center>
hello world!
</center>
</body>
</html>
正常网页应该只显示“hello world!”.      
apache 配置时, 默认的文件类型是 text, 不是 html, 这样就会把 html 也当成 text 显示了, 参考一下相关的配置:

[cax@monitor apache]$ grep mime.types conf/httpd.conf
TypesConfig conf/mime.types

[cax@monitor apache]$ grep html conf/mime.types
application/vnd.pwg-xhtml-print+xml
application/xhtml+xml           xhtml xht
text/html                       html htm      
谢谢版主,问题已解决,在mime.types文件中加入 “text/html                       html htm”这一行即可。