我已经从我的 url 中删除了 index.php 但现在我需要从 url 中获取一些变量,CI 解决方案是更新 config.php
$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE;
当我在 url 中使用 index.php 时,这项工作完美,但我需要它而不需要 index.php
这是我的 httacess
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA
任何解决方案?, 谢谢