I currently have a vhost.conf file, setup for a staging server. The problem I'm running into is that I need to have the staging server actually call (only) images from the production server. So, all other file types will call from the staging server, but any image request pulls data from production server. How would I do this using Apache redirection? This is what I currently have in my vhost.conf file
<LocationMatch ".(jpg|gif|png)$">
SetHandler None
</LocationMatch>
Any ideas?