Local codeigniter Ok but on server 404

0

Hello everyone, I'm having a problem opening my CI project on the server I use;

My Settings

If I use / Welcome, for example the CI finds the page normally, but if I use any of my controllers it returns 404;

$config['base_url'] = 'http://www.meusite.com.br/novo';
$config['index_page'] = '';

My controler is called index and has $ this- > load- > view ('myview'); (everything normal so far).

My .htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

But even so, the site does not open on my server but works normally on localhost.

    
asked by anonymous 27.07.2015 / 20:40

1 answer

3

Check the first letter of the name of each controler, if it is in the box, change it to the upper box, eg w elcome.php change to W elcome.php. I had the same problem this week when uploading an application to my host.

    
31.08.2015 / 16:02