Okay okay okay, sorry I didn't see this sooner. You guys were on a wild goose chase...
Clearly the problem is that index.php isn't set as a default file for directories under Apache (or whichever server you're using).
If it's Apache, you need to edit your apache.conf or httpd.conf (main Apache config file) and find the DirectoryIndex line. It should read:
`DirectoryIndex index.html index.htm default.html` or something similar.
Change it to:
`DirectoryIndex index.html index.htm default.html index.php` and whichever other directory default files you want, but definitely add the index.php to that line

That should do it.
Read more here...
http://httpd.apache.org/docs/2.0/mod/mod_dir.html