Tomcat中更改網站根目錄和默認頁的配置方法


1.tomcat原來的默認根目錄是http://localhost:8080,如果想修改訪問的根目錄,可以這樣:

找到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/jb51.net/tomcat/" debug="0"/>

 

其中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>

    
這樣就可以了。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM