Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 JSP 网站,不希望它显示为http://www.mywebsite.com/index.jsp。有什么方法可以省略 index.jsp 的显示吗?我只想要我的网站名称作为主页。
如果您定义index.jsp为欢迎文件,您可以在 URL 中省略它,但是显式引用 JSP 的 URL 仍然有效。
index.jsp
要将该页面定义为欢迎文件,请将以下块添加到您的web.xml:
web.xml
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list>