在一些页面当中需要跳转到其他页面时,直接写路径可能不会跳转
<a href="/sys/stuediturl?id=<%=stu.getId() %>">修改</a>
此时要在前面加
<a href="${pageContext.request.contextPath}/sys/stuediturl?id=<%=stu.getId() %>">修改</a>
在一些页面当中需要跳转到其他页面时,直接写路径可能不会跳转
<a href="/sys/stuediturl?id=<%=stu.getId() %>">修改</a>
此时要在前面加
<a href="${pageContext.request.contextPath}/sys/stuediturl?id=<%=stu.getId() %>">修改</a>