I have a wordpress site that is using an index.php page.
Now the website is not live yet, so I added an index.html page for a temp page - So that users will not see the index.php page, yet.
But now i cannot access my index.php file when visiting: http://mysite.com/index.php - It redirects me straight to http://mysite.com, which serves the index.html page
How can I view my index.php page?
NOTE: my htaccess file has the following:
DirectoryIndex index.html index.php
If I remove this, the default page people see is the index.php, which I don't want them to see. Only I want to be able to view the index.php file
thank you