怎样测试Apache     和PHP是否安装、配置正确

怎样测试Apache     和PHP是否安装、配置正确

在浏览器里面输入localhost能够看到:

您能看见这个页面,说明Apache web server 已经安装成功。您可以在这个目录中增加内容,或者把这个页面替换掉。
这不是你想看见的页面吧?

之所以会看见这个页面,是因为网站管理员改变了这个站点的设置。如果有疑问,请咨询维护此站点的人员。 Apache软件基金会, 即此站点所使用的网站服务器软件的开发者,不负责此站点的维护工作,也无法为您解决设置上的问题。

Apache 文档已经包含在此发行版中。

您可以在使用Apache的网站服务器上,自由地使用下面的图片。感谢使用Apache!

但是编写PHP( <? phpinfo(); ?>
)以后,我已经把编写好的文档放到:E:\Program Files\Apache Group\Apache2\htdocs 下面。但是当在浏览器里面输入:localhost/phpinfo.php以后看不到预想的结果,而是:Not Found

The requested URL /phpinfo.php was not found on this server.
Apache/2.0.63 (Win32) PHP/4.4.8 Server at localhost Port 80

是什么原因阿??郁闷。帮帮我吧。。。
看你的提示信息, 是安装好了。

你再确认一下, 你的 phpinfo.php 的名字 和 路径没搞错吧
文档名字:phpinfo.php
路径:E:\Program Files\Apache Group\Apache2\htdocs
我觉得没有错啊。。。
郁闷
编写其它程序以后,还是提示:
Not Found

The requested URL /phpinfo.php was not found on this server.
Apache/2.0.63 (Win32) PHP/4.4.8 Server at localhost Port 80
~~
你看下httpd.conf里面的DocumentRoot跟Directory
是不是指向的E:\Program Files\Apache Group\Apache2\htdocs这个目录
DocumentRoot是指向E:\Program Files\Apache Group\Apache2\htdocs

怎么看Directory是否也指向E:\Program Files\Apache Group\Apache2\htdocs呢???
Directory是DocumentRoot下面最近的一个Directory标签
在DocumentRoot下面找找,里面的路径应该和DocumentRoot保持一致
3楼和5楼结合起来,正解
#
DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features. 
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/Program Files/Apache Group/Apache2/htdocs">

都是对的,但是还是提示404 NOT FOUND
注意文件名大小写.
应该是配置错误··``