JSP重定向/转发

时间:2011-05-29 08:45:27

标签: jsp redirect forward

我有这个页面:

http://example.com/folder/page.jsp

如果页面http://example.com/page.jsp出现错误/异常,我想重定向/转发 (你可以看到路径不同)。

执行<jsp:forward page="/page.jsp">确实有效,但现在所有css和img ref都会搜索http://example.com/folder/csshttp://example.com/folder/img,而不保留example.com/page.jsp布局。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

以绝对的方式引用你的css,javascript和图像:

<link rel="stylesheet" type="text/css" href="/css/my.css" />