我最近切换了 ci v.3,当我点击我的 url 时,我遇到了我的实时服务器重定向到我的问题 404 错误页面,它在本地主机上非常好,但它在服务器上不起作用。我的 .htaccess 文件是
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
# 2 ---- Prevent directory file listing in all of your folders ----
IndexIgnore *