当我转到http://localhost:8080/application name/app/index.html#/home
我希望能够在我点击服务器名称时浏览它,例如http://localhost:8080
怎么做?
答案 0 :(得分:1)
使用tomcat时,在web.xml中可以添加:
<welcome-file-list>
<welcome-file>app/index.html</welcome-file>
</welcome-file-list>
然后您可以使用以下方式访问它:
http://localhost:8080/application_name/
这只会缩短应用程序的根页面,但我认为当你想要传播它时,这一点就更重要了。
完成此操作后,您应该看看: