【问题标题】:How to remove index.jsp from being displayed in URL?如何删除 index.jsp 在 URL 中的显示?
【发布时间】:2019-03-21 22:41:50
【问题描述】:

我有一个 JSP 网站,不希望它显示为 http://www.mywebsite.com/index.jsp。有什么办法可以省略 index.jsp 的显示吗?我只想要我的网站名称作为主页。

【问题讨论】:

标签: jsp url website-homepage


【解决方案1】:

如果您将index.jsp 定义为welcome-file,您可以在URL 中省略它,但是显式引用JSP 的URL 仍然有效。

要将该页面定义为欢迎文件,请将以下块添加到您的 web.xml

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-12-08
    • 2014-10-03
    • 1970-01-01
    • 1970-01-01
    • 2021-02-25
    • 2021-07-09
    相关资源
    最近更新 更多