Yes, another one of these. I\'ve tried everything I could find on the search with no luck.
In my httpd.conf (running centos and apache2):
Two points of advice:
1.) Be sure you are saving/editing the .htaccess file into the root of your project folder, and not the .htaccess in your /applications folder. Such that, if my applications folder was at, project/application, don't edit the project/application/.htaccess file. You need your file to be located at project/.htaccess
2.) Use the following in your .htaccess file:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]