我有一个网站,该网站的servlet具有标头
@WebServlet(name="BackendCommands", urlPatterns = {"/BackendCommands"}
我可以使用连接网址进行访问
http://brookgreenconsulting.us:8080/BackendCommands/index.jsp"
具有
<%@ page language="java" contentType="text/html;charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<html>
<head>
<title>TODO supply a title</title>
</head>
<body>
<jsp:forward page="BackendCommands"/>
</body>
</html>
但是我无法使用url
访问它http://brookgreenconsulting.us:8080/BackendCommands/BackendCommands"
我想我应该能够
我的Apache服务器虚拟主机设置是端口80的简单默认设置
我需要在Apache设置中进行更广泛的设置吗?
目前尚不清楚文档