作成した 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