找到网站的主机或空间中的 /wwwroot/WEB-INF/web.xml 文件。用各类支持文本形式的编辑器,比如vscode、dw、notepad、editplus、甚至记事本也可,打开该文件。
找到welcome-file-list字段的内容:
<welcome-file-list> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
如上代码中,默认的是index.htm和index.jsp为首页文档,可以自己添加或替换。并且webservice会按照顺序执行网站根目录下的相应文件,所以顺序也很重要。