Forum Moderators: phranque
I'm moving this thread over to our Apache forum to see if you can get a more definitive answer from the rewrite experts. :)
Doing this to grab images from any site I administrate wouldn't work, at least not for long...
With respect, I'd suggest finding a better way to do business.
Jim
<html>
<script>
function down(e) {
e.src='url of image replacement';
}
</script>
<body>
<img src="http://none.dev.null/image.gif" onerror="down(this)">
<img src="http://another.dev.null/image.gif" onerror="down(this)">
<img src="http://last.dev.null/image.gif" onerror="down(this)">
</body>
</html>