All the image assets in my Rails application live in /public/images
and are served by Apache if they exist on the server. If a request for a missing image is made, Apache can't serve it so it gets passed on to Rails which subsequently raises a 404.
Ideally I would like any request for a missing image to be handled at the Apache level, rather than be forwarded on to Rails. How best can I achieve this?