http://codeigniter.com/user_guide/general/urls.html
I am using a MAMP setup
I access my codeigniter welcome message as follows
http://localhost:8888/CodeIgniter_2.0.2/index.php/welcome
the tutorial says
use a .htaccess file as
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
to get same message with
http://localhost:8888/CodeIgniter_2.0.2/welcome
but I get a 404 not found error instead