if this is a default apache installation, it will not look for index or default.php. you must edit your httpd.conf file to specify index.php and default.php as index pages.
in httpd.conf you may see something like this:
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm
</IfModule>
just add all the default files you want into that
or use a .htaccess file in the same directory and inside it put
DirectoryIndex index.php
hope that helps, gotta run now.