我在Google App Engine(Java)上托管了我的静态网页。它没有任何服务器端编码。
我使用HTML5 Boilerplate代码作为我的基础。它有一个名为404.html的页面。如果找不到页面错误,我想显示此404.html
页面。
如何在Google App引擎中显示自定义404页面?
答案 0 :(得分:1)
您可以在app.yaml
文件中设置custom error responses。
答案 1 :(得分:1)
在Java中,您可以在web.xml
文件中设置error handlers(该文件位于WEB-INF /目录下的应用程序WAR中)。
<error-page>
<error-code>500</error-code>
<location>/errors/servererror.jsp</location>
</error-page>