私はに変更$config['index_page']
しました
$config['index_page'] = ''
また、.htaccess ファイルの内容を次のように更新しました。
RewriteEngine on
RewriteCond $1 !^(index\.php|public|\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1
しかし、URLにindex.phpを入れないとコントローラーにアクセスできません。それで、次に何をすべきですか?