如何将基本网址重定向到html

时间:2015-07-12 16:03:02

标签: windows tomcat

我使用Windows服务器和apache tomcat。我的应用程序部署在根文件夹中。所以,如果你想打开我的应用程序,你必须发送reqeust到checkerweb.tk/main.html。 将checkerweb.tk重定向到checkerweb.tk/main.html的最佳方法是什么?

1 个答案:

答案 0 :(得分:1)

简单:在WEB-INF/web.xml中,只需将此片段添加到适当的位置

即可
<welcome-file-list>
    <welcome-file>main.html</welcome-file>
</welcome-file-list>