samri's corect - the files in the document root are what they are seeing.
Main Topics
Browse All TopicsOn my server, the root of each of my virtual hosts will display a Apache test page whenever their document root is empty. An exmaple, is http://b0x.info, or http://kford.ninjapole.com
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I'm confused, I'm on plesk and the document root for each host is /home/httpd/hostname/httpd
Bah, figured it out by myself. In httpd.conf you need to find:
# Disable autoindex for the root directory, and present a
# default Welcome page if no other index page is present.
#
#<LocationMatch "^/+$">
# Options -Indexes
# ErrorDocument 403 /error/noindex.html
#</LocationMatch>
And just add the #'s in front of it so they become invalid. Works fine now.
hi WavyGravy,
Congratulation.
Apparently, the config section that you posted is not part of standard Apache installation, which is quite hard for us to guess the reason - based on your initial problem description.
Not to worry -- since you practically found the solution (even though unique to your Apache installation), please request for a refund. Should you feel that we had been assisting you to arrive to that solution, please award the members accordingly.
Cheers.
Business Accounts
Answer for Membership
by: samriPosted on 2004-02-09 at 09:27:22ID: 10312028
Quick and dirty way would be changing the default "DocumentRoot" directive to point to some other directory, or you move the content to something else.
cs-2.0/mod /core.html #documentr oot
for example;
DocumentRoot
http://httpd.apache.org/do
Mine is on Win2K.
--
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs"
---
Either adjust this to point to some other directory (if you did this, ensure that you also fix the corresponding Directory directive -- otherwise you may end-up with error.
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/Program Files/Apache Group/Apache2/htdocs">
---
The quickes thing would be renaming the existing htdocs (or whatever your existing DocumentRoot is pointing to), to something else, and create another folder (with the same name), and make sure the permission is the same as the original (if you are on UNIX).
hope this helps.