使index.html成为路径的一部分

时间:2013-09-21 10:26:12

标签: java javascript html css servlets

我正在构建一个Web游戏,也使用Java servlet - 使用TomCat在本地运行它。 主页面网址为:localhost:8080/index.html/

每当我尝试移动到其他servlet \ page时,路径为:localhost:8080/index.html/inGame.html 好像index.html是一个文件夹。

我该如何解决? 非常感谢你!

1 个答案:

答案 0 :(得分:0)

我认为你的代码应该是这样的

RequestDispatcher a = request.getRequestDispatcher(“other servlet url / mapping”);

a.forward(request,response);