You can use .htaccess to set the default page
Code:
DirectoryIndex index.php
You can also use .htaccess to redirect all your other pages (index.htm, index.html) to index.php
Code:
Redirect 301 index.htm http://www.yourdomain.com/index.php
You do mod rewrite in your .htaccess file. To do mod rewrite you will ne something like this
Code:
RewriteEngine On
RewriteRule ^index.html$ /index.php [R=301]
Hope that this points you in the right direction.