I need to redirect from http://example.com/ to http://example.com/index.php.
http://example.com/
http://example.com/index.php
Try this:
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^$ RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule ^$ http://example.com/index.php [L,R=301]