我在从 codeigniter-2 中删除 index.php 时遇到问题。我记得之前也使用过相同的代码,它工作得非常好,但它不适用于 codeigniter-2。
我的 .htaccess 代码如下:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
RewriteRule ^(.*)$ ./index.php/$1 [L]