I did a project in CodeIgniter. It\'s working fine on my localhost, but giving \"500 Internal Server Error\" on the remote server. This is my .htaccess file con
.htaccess
try this out :
RewriteEngine on RewriteCond $1 !^(index\.php|public|\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1
Probably you have problem with your htaccess file. It's helped me as well.