Index somehow ignored

All other index files are removed from the web site. In other words, there is no index.php or anything like that. Yet, when I go to arguemax.com, a web site I am working on, no index comes up unless I type arguemax.com/index.html. Why is that? Video showing interaction is here http://youtu.be/SfBxEjZZ6WM

I think I am about to answer my own question
.htaccess has
DirectoryIndex index.php

and I am about to change that

xarzu,

Simple! Change the DirectoryIndex to add your default page (which will trickle down through your site).

DirectoryIndex your_start_page index.html index.php
# Apache will serve the first it finds in this list

Regards,

DK