I am using CodeIgniter and need to get rid of the \"index.php\" in the URL. I copied the .htaccess file from codeigniter tutorial, emptied the $config[\'index_page\'] = \'\'; an
If this is really part of the .htaccess file, it would cause your problem:
.htaccess
RewriteRule ^{.*)$ /index.php?/$1 [L] ^^^ typo?
Should be:
RewriteRule ^(.*)$ /index.php?/$1 [L]