I just uploaded my application into another server (worked well on the previous), but now I get this error:
Not Found
The requested URL /lk/installation was not found on this server.
I suspect that there are some issues with the .htaccess
which have the following content:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
the controller installation
is declared as: Installation.php
, but I repeat, the application worked well on the previous server so there aren't technical problem like class name declaration or something like. Must be a problem of configuration of the server, noticed that I get not found with the server page not CodeIgniter page.