1.域名访问
打开tomcat安装目录下的conf文件夹,找到server.xml
修改内容:
<Host name="localhost" appBase="webapps/ROOT/zdBase"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
将localhost换成IP地址或域名,申请了域名后解析至该name即可
appBase是项目所在目录,网站文件均放置在该文件夹,修改下面语句
<Context path="/ROOT/zdBase" reloadable="true" docBase="." workDir="E:\Exploitation\tomcat\webapps\ROOT\zdBase\work"/>
此处的path对应上面的appBase
2.默认页面
打开tomcat安装目录下的conf文件夹,找到web.xml
在下面添加你需要的首页即可。
<welcome-file-list>
<welcome-file>login.html</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>