I'm trying to make my .htaccess work. My DirectoryIndex is index.html
I would like visitors to see index.html when they go to www.domain.com. I would also like index.php to work when visitors go to www.domain.com/index.php.
What it's happening is that visitors go to www.domain.com/index.php and they are redirected to www.domain.com so they see index.html . Is there a way to make www.domain.com/index.php to go to the index.php page instead of going to the root.
I tried RewriteCond %{THE_REQUEST} and RewriteCond %{REQUEST_URI} with no luck.
Thanks for your help! :)