I am tried to remove index.php in Codeigniter HMVC. But I Could not complete with the following code.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
I placed .htaccess file in root directory and removed index.php from config file. Still I'm facing the same problem.