我正在运行weblogic 9.当我在应用程序根目录下输入错误的URL时,我将404请求重定向到自定义的错误页面。
EG。 http://localhost:7001/myApp/non-existent
重定向到我自定义的错误页面。
有没有办法为输入的所有错误网址执行此操作,不一定在应用程序根目录下?
EG。 http://localhost:7001/anything_non-existent
应该重定向到我的自定义错误页面,而不是网络逻辑默认页面?
由于
答案 0 :(得分:1)
您可以在应用程序的web.xml中为error-page
<error-code>404</error-code>
http://localhost:7001/anything_non-existent
实际上正在寻找丢失的Web应用程序。
如果您在Weblogic前面有像Apache这样的Web服务器,那么这是捕获它并重定向到404的正确位置。