如何在 URL 命中时打开子目录的 HTML 页面

发布于 2024-12-10 08:03:49 字数 376 浏览 1 评论 0原文

我有一个问题:

我有一个场景,当用户打开 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

也只是曾经 2024-12-17 08:03:49

您可以在 web.xml 示例中使用welcome-file属性

xyz.html

这将使 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文