I am looking to create a url alias for any path of:
/images/section* to /section_images/section*
So for example /images/section_a/a.gif
will locate to /section_images/section_a/a.gif
I know how to create alias matches to rewrite specific directories:
AliasMatch ^/images/(.*) /site/path/section_images/$1
However do not want everything in images to go to section_images, only directories which match section*
Thanks.