从Tomcat URL中删除文件夹名称

时间:2018-03-01 13:09:46

标签: javascript java html tomcat

我创建了一个webapp,并将其部署在tomcat上。

但我需要http://ip:port

而不是http://ip:port/nameOfTheWarFile

进入。有没有办法从网址中删除该名称,只需使用http://ip:port

2 个答案:

答案 0 :(得分:1)

将应用程序部署为ROOT.war

如果您不希望应用程序名称位于网址内并直接在" http://ip:port"等网址上访问该应用程序,则表示您需要您的网络应用的空上下文路径

基于Tomcat documentation,您可以部署基本名称等于ROOT(即ROOT.warROOT.xml)的Web应用程序,以实现空的上下文路径:

Context Path   | Base File Name | Example File Names 
Empty String   | ROOT           | ROOT.xml, ROOT.war, ROOT

答案 1 :(得分:0)

您需要更改Web应用程序的上下文路径。另一个用户有类似的问题,并在这里得到解答。

How to set the context path of a web application in Tomcat 7.0