Basically, if the browser (javascript) requests h**p://www.example.com/design/images/regional/cumbria.jpg and it exists, show the image. If the image does NOT exist, serve h**p://www.example.com/design/images/regional/coming_soon.jpg instead (but serve it with the filename cumbria.jpg (or whatever was requested).
AND I only want this rule to apply if the are requesting something from h**p://www.example.com/design/images/regional/*
Any help you can provide the tiny, rotting bit of my brain that is dedicated to url rewriting would be hugely appreciated.
Don’t worry, I had to change a load of other things for another reason and this has allowed me to change my approach and I am now dealing with this as an if statement in the javascript.
Since you actually wanted to redirect IMAGES to coming_soon.jpg, use image extensions in the regex of the RewriteRule. That should solve your problem with mod_rewrite (EVEN in IIS’s implementation).