如何将用户重定向到其域名相应的页面之一? web.xml
<welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>now_see_this.jsp</welcome-file> <welcome-file>Another.jsp</welcome-file> </welcome-file-list>
谢谢!!!
您可以
javax.servlet.Filter
/
request.getServerName()
request.getRequestDispatcher("/someIndex.jsp").forward()
但是,这似乎是一个奇怪的用例,因为如果用户知道其他域的索引文件(如果它们未隐藏在中WEB- INF),则仍然可以访问其他域的索引文件。但是在不知道您的要求的情况下,我无法提出更好的解决方案。
WEB- INF