我已经$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
但如果不将 index.php 放入我的网址,我将无法访问控制器。那么接下来我该怎么做呢?