次の内容の .htaccess ファイルがあります
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_URI} (\/image\/)
#RewriteRule . image.php
RewriteRule . index.php
/image/ がリクエスト URL にある場合、image.php にリクエストを送信するように apache に指示する正しい方法は何ですか?