打开tomcat的安装目录下的 conf/server.xml,在
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true"></Host>
之间加上
<Context path="" docBase="项目名称 " reloadable="true" debug="0" privileged="true" />
例如:
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="" docBase="text " reloadable="true" debug="0" privileged="true" /> </Host>
这样进tomcat的主页的时候就会显示你text项目的主页了