Can anyone help me with this routine I need in a web page. In plainEnglish:If, when attempting to connect to www.abc.com, the page cannot befound thenredirect to www.xyz.comelseredirect to www.abc.comend ifI don't care what language is used I just need it to be simple. Javaseems the obvious one though.
you can use this with Jsp<%if (Condition== true)response.forward("your Url 1");elseresponse.forward("your Url 1");%>