im not sure if im doing this right…but im trying to remove the index.php from needing to be present during controller calls,
reading through the user guide, i see that in order to do that, you add the following to the htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
however for some reason, everytime i add the following code, i get a 500 server error when i try to view my site (on a local machine, using apache)
anything im doing wrong?
