I\'m trying with codeigniter, I build a small web that working fine in local but when I uploaded to my free hosting (http://www.hostinger.es) then don\'t work. I think it is bec
Use the following code in your .htaccess file
RewriteEngine On RewriteCond %{REQUEST_URI} ^/system.* RewriteRule ^(.*)$ index.php?/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?/$1 [L]