How do you set a website's or a folder's default page to something other than index.html, for example home.html?
Create an .htaccess file in your public directory, or the directory for which you want to change the default, and add the following line:
DirectoryIndex filename.html
[change filename.html to the file name that you want to use as the default, e.g. home.html, etc.]
I'll let you know how it goes!