Method 1 : Put the following code in .htaccess to redirect index.html to home.html RewriteEngine on Method 2 : In your root .htaccess file add the following
RewriteRule ^home\.html /index\.html
DirectoryIndex home.html home.htm index.html index.htm
This will first look for and display home.html then home.htm.