htaccess I have made is not running as it should, why ?
there is my 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>
and the index page config
$config['index_page'] = '';
but there is still 404 page not found
http://hostname/blog <=== 404 page not found
http://hostname/index.php/blog <=== normal page show up
