i am using CI version 3.1.0
and inside my httacces file like this
RewriteEngine on
RewriteCond $1 !^(index\.php|public|\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1
and i have change my config file to $config['index_page'] = ''
i'ts work but CI seem cant find controller that request fromm url.
example localhost/site/index.php/welcome
its work as expected, but when request it with localhost/site/welcome
i got 404 page not found.