自定义错误404 - OHS

时间:2018-03-20 17:39:43

标签: oracle apache http weblogic weblogic12c

我有一个http哦,将请求重定向到weblogic 12c;

如果有重定向到自定义页面并且未显示默认的weblogic错误,我想引入错误404.

这是apache位置配置:

<Location />
        WebLogicCluster xxxxxx:xxxx,xxxxxx:xxxx
        SetHandler weblogic-handler
        ErrorPage /error.html
</Location>

即使通知“ErrorPage”,它也不会重定向到所选页面。

你可能有办法修改weblogic页面404而不是apache吗?

2 个答案:

答案 0 :(得分:0)

您可以在WebLogic服务器中实现此目的。更新您的web.xml文件以包含此代码:

<%@page isErrorPage=”true” contentType=”text/html” %>
<html>
<body>
...
</body>
</html>

然后在您的网络应用中创建error.jsp以显示自定义消息,例如:

{{1}}

答案 1 :(得分:0)

如果您仍在寻找使用OHS的解决方案:

OHS基于Apache。您应该能够使用here

中描述的步骤
myForm.submit();