Send redirect to relative path in JSP?

前端 未结 3 1624
后悔当初
后悔当初 2020-12-06 02:58
response.sendRedirect(\"../seja/izpisknjig.jsp\");

the file in which I execute this line is index.jsp. the directory structure looks like this.

3条回答
  •  -上瘾入骨i
    2020-12-06 03:15

    You may be overthinking this. You could just pier some generate some javascript to redirect anywhere you like.

      document.location = "MyPage.php?action=DoThis";
    

提交回复
热议问题