我有一个包含以下内容的 .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
如果在请求 url 中找到 /image/,指示 apache 向 image.php 发送请求的正确方法是什么,如果没有,我希望 index.php 处理请求?