I’m trying to use an XPage to do a 301 redirect.
This code will do a 302 redirect (“Moved Temporarily”).
facesContext.getExternalContext().redirect(“http://www.cnn.com”)
I discovered a post in StackOverflow which instructs that the following code will do a 301 (“Moved Permanently”) which is what I desire, however I am unable to refine the code to work in an xPage because i can’t find the relevant methods in externalContext. Can anyone help?
externalContext.setResponseStatus(HttpServletResponse.SC_MOVED_PERMANENTLY); externalContext.setResponseHeader(“Location”, destination); facesContext.responseComplete();