Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I hosted my static web pages on Google App Engine (Java). It does not have any server side coding.

I used HTML5 Boilerplate code as my base. It has page called 404.html. I would like to show this 404.html page when there is page not found error.

How can I show a custom 404 page in Google App engine?

share|improve this question

2 Answers

up vote 1 down vote accepted

In Java you can set up error handlers in your web.xml file (which is located in the app's WAR under the WEB-INF/ directory).

<error-page>
    <error-code>500</error-code>
    <location>/errors/servererror.jsp</location>
</error-page>
share|improve this answer

You can set custom error responses in your app.yaml file.

share|improve this answer
Thanks. I use Java(not python). Is it web.xml for java? Can you give sample file to configure 404 page? – Fizer Khan Aug 13 '12 at 11:42
Updated the link above. – Peter Knego Aug 13 '12 at 12:06
You can not have a default error handler for custom HTTP error states, for example 404: stackoverflow.com/questions/6774451/error-handlers-on-app-yaml – Peter Knego Aug 13 '12 at 12:09
If your app produces 404, then is it's responsibility to show error page instead. – Peter Knego Aug 13 '12 at 12:10
Thanks. I found it <error-page> <error-code>404</error-code> <location>/WEB-INF/jsp/errors/404.jsp</location> </error-page> – Fizer Khan Aug 17 '12 at 4:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.