Today have the urls of the images of my site as:
/images/tb/1280077_894mvzfxoojqb.jpg
I would like to be able to rename this so that the generated HTML is
Apartamento_em_SaoPaulo.jpg
or something similar.
Possible options.
Apartamento_em_SaoPaulo__1280077_894mvzfxoojqb.jpg
or
/1280077_894mvzfxoojqb/Apartamento_em_SaoPaulo.jpg
This is for SEO reasons. That is, in html it would have a name but would physically fetch the photo under another name.
Something like:
RewriteRule ^/imagens/([a-zA-Z0-9_-]+).jpg /imagens/$1.jpg
But it would not be feasible to rename physically in the photos (it has more than 2 million images), it would have to be something like Route
or UrlRewrite