2015-07-12 65 views
0

我使用Windows服務器和apache tomcat。我的應用程序部署在根文件夾中。所以,如果你想打開我的應用程序,你必須發送reqeust到checkerweb.tk/main.html。 將checkerweb.tk重定向到checkerweb.tk/main.html的最佳方式是什麼?如何將基址重定向到html

回答

1

簡單:在你的WEB-INF/web.xml只是在適當的地方

<welcome-file-list> 
    <welcome-file>main.html</welcome-file> 
</welcome-file-list> 
+0

它的工作原理添加此片段,謝謝 – eriksson

相關問題