1.tomcat原來的默認根目錄是http://localhost:8080,如果想修改訪問的根目錄,可以這樣:
找到tomcat的server.xml(在conf目錄下),找到:
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false"></Host>
在</Host>前插入:
其中D:/eclipse3.3/jb51.net/tomcat/就是我想設置的網站根目錄,然后重啟tomcat。
再次訪問http://localhost:8080時,就是直接訪問D:/eclipse3.3/jb51.net/tomcat/目錄下的文件了。
2.tomcat的web.xml(在conf目錄下),在該文件中找到
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
這是tomcat默認的3個文件,當你輸入指定路徑后,tomcat會自動查找這3個頁面。如果你想讓tomcat自動找到自己的頁面,比如main.jsp。可以修改上面信息為:
<welcome-file-list>
<welcome-file>main.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
這樣就可以了。