2
That's something you have to configure your apache server for. If you can edit the apache httpd.conf file yourself, then you have to do a search for the key that sets the directory index, (probably set as index.htm, index.html, index.shtml) and add index.php.
This is from my localhost's httpd.conf:
Quote:
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.shtml index.html.var index.htm index.php3 index.php index.pl index.cgi
Herko