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.