gpt4 book ai didi

java - 如何使用子文件夹作为 web.xml 欢迎目录

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:34:37 25 4
gpt4 key购买 nike

我想为 Google App Engine 配置我的 web.xml,但我的配置不起作用。我想用 WebApp/index.html 更改默认的 index.html

这是 web.xml:

<servlet>
<servlet-name>App</servlet-name>
<servlet-class>bg.app.AppServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>App</servlet-name>
<url-pattern>/WebApp/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>WebApp/index.html</welcome-file>
</welcome-file-list>

最佳答案

“欢迎文件”表示通过 URL 请求文件夹时需要提供的物理文件。例如。 //WebApp/WebApp/foo/。它并不像许多初学者认为的那样代表“主页文件”。让欢迎文件指向子文件夹没有意义。当请求另一个子文件夹时它会失败。

只需将 index.html 作为欢迎文件,将所需的主页文件放在 /WebApp/ 文件夹中,然后创建另一个 index.html根文件夹 / 中的文件,内容如下:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Dummy homepage</title>
<meta http-equiv="refresh" content="0; url=WebApp" />
</head>
</html>

这将重定向到 /WebApp/(searchbots 会将其视为 301),这反过来应该提供所需的主页文件。

另见:

关于java - 如何使用子文件夹作为 web.xml 欢迎目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16425010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com