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
DirectoryIndex directive applies to all subfolders, if you want set diffrent files for each directories, you can use mod-rewrite.
To set /file.html as root directory handler, you can use this at the top of your htaccess :
RewriteEngine on
RewriteRule ^$ /file.html [L]
To set a diffrent file as index for a subfolder, use this :
RewriteEngine on
RewriteRule ^subfolder/$ /myfile.html [L]