我有这个页面:
http://example.com/folder/page.jsp
如果页面http://example.com/page.jsp出现错误/异常,我想重定向/转发 (你可以看到路径不同)。
执行<jsp:forward page="/page.jsp">
确实有效,但现在所有css和img ref都会搜索http://example.com/folder/css,http://example.com/folder/img,而不保留example.com/page.jsp布局。
我该如何解决这个问题?
答案 0 :(得分:1)
以绝对的方式引用你的css,javascript和图像:
<link rel="stylesheet" type="text/css" href="/css/my.css" />