I have some redirects and urls that use the index controller
absolute or relative like this: www.domain/index/contact or just /index/contact
Can I strip out the index part with htaccess so I wil see www.domain/contactI only want this for the index controller
EDIT
these are my rules that I already have
Options +FollowSymlinks
RewriteEngine On
Options All -Indexes
IndexIgnore *
DirectoryIndex index.php
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ index.php/?$1 [L,QSA]
thanks in advance, Rich