There are the rules:\[code\]RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule (.+) dir/index.php?$1 [L]RewriteRule dir/index.php.* - [F]\[/code\]Why the last rule is processed and it returns Forbidden for all requests?I need that if file or directory is not found then the next rule shouldn't be processed.