Remova o index.php no CodeIgniter

Estou tentando remover o 'index.php' dos URLs do CI.

Eu tentei muitas soluções, nenhuma delas funcionou. Eu já defini essas variáveis no 'config.php':

$config['index_page'] = "";
$config['uri_protocol'] = "REQUEST_URI";

E meu .htaccess atual é:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^plugb.com$ [NC]
RewriteRule ^(.*)$ http://www.plugb.com/$1 [R=301,L]

RewriteCond $1 !^(index\.php|files|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

A parte do prefixo www funciona bem. Mas a parte 'index.php' não. Se você deseja verificar a página da web, aqui está:http://www.plugb.com/index.php/home

questionAnswers(2)

yourAnswerToTheQuestion