There are two steps:
1) Edit config.php
$config['index_page'] = 'index.php';
To
$config['index_page'] = '’;
2) Create/Edit .htaccess file
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]