Solved it!
Just in case anyone else needs to know how to hide their directory listings and direct browsers to their index.php file, well, here’s the solution I found (solution found here!)
DirectoryIndex index.php
IndexIgnore *
<Files .htaccess>
order allow,deny
deny from all
</Files>
Further suggestions most welcome.