# Вариант 1, без переадресации
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.?images/(.+)$ public/images/$1
# Вариант 2, с переадресацией
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.?images/(.+)$ /public/images/$1 [R,L]
push "redirect-gateway def1"
.