Forum Discussion
Arie
Nov 01, 2011Altostratus
To clarify, I assume that you want the redirect only if the web server returns a 404? You mentioned the browser (client), but it sounds like you want to intercept 404s.
We had this requirement years ago. Digging up some old code, here's how I handled it:
when HTTP_RESPONSE {
if { ([HTTP::status] equals "404") } {
HTTP::redirect ...