I\'ve looked in the documentation of Codeigniter of removing the index.php from the URL when accessing different views, the code shows how to remove it with apa
You should change
RewriteRule ^(.*)$ /index.php/$1 [L]
to
RewriteRule ^(.*)$ /code/index.php/$1 [L]
You also need to modify the $config['index_page'] variable like this:
$config['index_page'] = '';
Please refer to my post at http://www.boxoft.net/2011/07/removing-index-php-from-codeigniter-2-0-2-url/ if you like.