I have a WordPress installation on which I want to work currently. The visitor should just see a static index.html when he visits the site, but I will still enter domain.com/index.php in the browser and the normal WP site should load.
I changed my .htaccess to:
DirectoryIndex index.html index.php
But now the index.html is always loaded, even when I type domain.com/index.php in the browser. How can I set the index.html as the default but can still reach the index.php?
Thanks.