Removing index.php in CodeIgniter using .htaccess file is not working for me. I Tried following code eventhough not working.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L,QSA]
</IfModule>
I tried this http://firstcode.info/codeigniter-removing-index-php-from-url/. But not working.But its working in my localhost. I also edited httpd.config file.But off no use. Please help me.