I have website http://mywebsite.com If I hit this URL it take index.php and index.html as default page. How can I make home.php as default page. I have tried this but not wo
You need AllowOverride +Indexes in your httpd.conf to be able to use DirectoryIndex in .htaccess.
AllowOverride +Indexes
httpd.conf
DirectoryIndex
.htaccess
Barring that, the absolutely easiest way to redirect (without the root access to Apache config and modules) is putting this as index.html:
index.html