当我编辑 .htaccess 以从我的 url 中删除 index.php 时,我正在使用 CI 2.1.4(尝试使用)它不起作用。我的项目在一个子文件夹中:
我已经设置 base_url 从 $config['index_page'] = '' 中删除了 index.php 并粘贴了确切的代码形式http://ellislab.com/codeigniter/user-guide/general/urls.html:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
尝试了一些来自 stackoverflow.com 研究员的解决方案(一些使用 RewriteBase),但是,它不起作用。我该如何解决?