I have this .htaccess script:
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
and the rewrite engine is on based on what i see in phpinfo. here is the screen for phpinfo

what could be the problem? all URL to controller/action is not found (404)