Tomcat无法将cpho.html和hhpnz.html文件识别为index.html文件

时间:2018-10-01 20:55:10

标签: angular tomcat7

我在一个Angular项目中运行两个应用程序,我想要在Tomcat服务器中运行这些应用程序。我的问题是,当我尝试构建它并将dist文件夹放入Tomcat时,即使我尝试将其设置为index.html,也无法将cpho.html和hhpnz.html识别为index.html文件。 .angular-cli.json,任何解决方案?解决吗?甚至是更好的方法?

这是我的project structure

这是我的.angular-cli.json,cphohhpnz

1 个答案:

答案 0 :(得分:0)

我可能不太了解您的问题,

但是说到Tomcat,index.html被当作“欢迎文件”(当客户机请求包含该文件的目录时返回的文件)有特殊对待。

欢迎文件名列表可以在Web应用程序描述符文件(WEB-INF/web.xml)中进行配置。详细信息在Servlet specification中。

默认配置如下:

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>