我设置Tomcat8并在webapps目录中上传jsp项目。 现在,我可以使用“http://sitename/project name / web”等网址访问我的网站。 但我希望我的项目在访问“http://sitename”时显示。 我试图找到解决方案,但没有任何帮助。 请帮我。 谢谢。
答案 0 :(得分:0)
尝试在ROOT
目录中创建名为webapps
的目录,并将其放入jsp文件并重命名为index.jsp
。
如果您在ROOT
目录中创建ROOT.war
目录或webapps
,则可以在不/[context-name]
的情况下访问该应用,例如“http://sitename/your.jsp”。
此外,Tomcat通过conf/web.xml
中的以下默认设置将index.jsp视为欢迎文件:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
因此,您可以通过请求“http://sitename”来访问ROOT/index.jsp
。