I need to remove index.php from my URLs that read such as domain.com/index.php/site/login so they read domain.com/site/login.
I currently have .htaccess is my webroot directory (chmod 644) as follows:
[code]RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php[/code]
But nada! What am I doing wrong? I’m using a shared hosting plan, but I read that mod_rewrite is enabled on all plans.
Thanks!,
doughty