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
Just try to rewrite /index.html and /index.php into /home.php
/index.html
/index.php
/home.php
Options +FollowSymlinks RewriteEngine on RewriteCond %{REQUEST_URI} ^/index\.(html|php) RewriteRule ^(.*) /home.php