如何在 URL 命中时打开子目录的 HTML 页面
我有一个问题:
我有一个场景,当用户打开 http://MYWEBSITE.com/abc/ 时,用户被定向到位于 abc 子目录中的 xyz.html 页面。我正在使用 Java 进行 Web 开发。我怎样才能在 web.xml 中做到这一点?
PS URL 是 http://MYWEBSITE.com/abc/ 而不是 http://MYWEBSITE.com/abc
i have a question:
I have a scenario that when user opens http://MYWEBSITE.com/abc/ , the user is directed to xyz.html page which is in abc subdirectory. I am using Java for web development. How can I do this in web.xml?
P.S. URL is http://MYWEBSITE.com/abc/ not http://MYWEBSITE.com/abc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 web.xml 示例中使用welcome-file属性
:
这将使 tomcat 查找与名称匹配的页面(如果找到)并加载它。
you can use the welcome-file attribute in the web.xml
example:
<welcome-file>xyz.html</welcome-file>
This would get tomcat to look for a page matching the name (if found) and load it.