Tomcat中更改網(wǎng)站根目錄和默認(rèn)頁(yè)的配置方法
1.tomcat原來(lái)的默認(rèn)根目錄是http://www.tjdsmy.cn:8080,如果想修改訪問(wèn)的根目錄,可以這樣:
找到tomcat的server.xml(在conf目錄下),找到:
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false"></Host>
在</Host>前插入:
<Context path="" docBase="D:/eclipse3.3/landui/tomcat/" debug="0"/>
其中D:/eclipse3.3/landui/tomcat/就是我想設(shè)置的網(wǎng)站根目錄,然后重啟tomcat。
再次訪問(wèn)http://www.tjdsmy.cn:8080時(shí),就是直接訪問(wèn)D:/eclipse3.3/landui/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默認(rèn)的3個(gè)文件,當(dāng)你輸入指定路徑后,tomcat會(huì)自動(dòng)查找這3個(gè)頁(yè)面。如果你想讓tomcat自動(dòng)找到自己的頁(yè)面,比如main.jsp??梢孕薷纳厦嫘畔椋?br/>
<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>
這樣就可以了。
會(huì)員登錄
賬號(hào)登錄還沒(méi)有賬號(hào)?立即注冊(cè)