在jsp include中找不到HTTP状态500文件错误

时间:2016-01-16 07:19:46

标签: jsp filenotfoundexception jspinclude

我从根目录中包含文件。它在当地工作正常,但当我托管我的网站时,它给我:

  

错误HTTP状态500:找不到“../connection.jsp”

我的文件在

  

的public_html / MyFolder文件/ connection.jsp

共享主机。

我想在

中包含文件
  

的public_html / MyFolder文件/进程/用户的login.jsp

1 个答案:

答案 0 :(得分:0)

如果public_html是您的Web应用程序的根文件夹,那么您可以使用包含资源的绝对路径。

<jsp:include page="${pageContext.request.contextPath}/myfolder/connection.jsp"/>