jsp 中包含 HTTP 状态 500 文件未找到错误

HTTP Status 500 file not found error in jsp include

我从我的根目录中包含文件。它在本地运行良好,但当我托管我的网站时,它给我:

error HTTP Status 500: "../connection.jsp" not found

我的文件在

public_html/myfolder/connection.jsp

在共享主机上。

我想将文件包含在

public_html/myfolder/process/user-login.jsp

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

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