我所做的 htaccess 没有按应有的方式运行,为什么?
有我的 htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
php_value memory_limit "64M"
</IfModule>
和索引页面配置
$config['index_page'] = '';
但是仍然没有找到404页面
http://hostname/blog <=== 404 page not found
http://hostname/index.php/blog <=== normal page show up