我试图在 Codeigniter HMVC 中删除 index.php。但是我无法使用以下代码完成。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
我将 .htaccess 文件放在根目录中,并从配置文件中删除了 index.php。我仍然面临同样的问题。