См. Руководство по CodeIgniter .
В корне вашего документа .htaccess
файл, содержащий следующее:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt) # these are examples,
# add everything here that
# you **don't** want to be
# routed to CI
RewriteRule ^(.*)$ /index.php/$1 [L]
Затем в application/config/config.php
изменить:
$config['index_page'] = '';