如何在tomcat服务器中更改我的webapp的URL?

时间:2014-03-18 07:04:20

标签: eclipse spring url tomcat url-rewriting

eclipse中的目录结构是 - MyProjectName( WebContent( META-INF( MANIFEST.MF ), app( appname( index.html ) ), WEB-INF(web.xml) ) ) 我可以使用tomcat7访问我的项目 http://localhost:8080/MyProjectName/app/appname/index.html 我想使用它来访问它 localhost

我没有使用除html / js / css之外的任何其他代码,并且所有代码仅在Webapps目录中。

Spring,Tomcat7,windows7是平台。

1 个答案:

答案 0 :(得分:0)

如果它的欢迎文件在web.xml中使用如下所示

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>/app/appname/index.html</welcome-file>
  </welcome-file-list>