I have two index files in my public_html folder (Apache), index.html and index.php
By default Apache seems to be directing traffic to index.php, so I want to change that to index.html. I added a .htaccess file in the same directory with this in it:
DirectoryIndex index.html
But when visitors go to the website (www.example.com/), they are still directed to index.php
Why is this?