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.

Is it possible to specify the equivalent of a default document for directories in Google App Engine so that navigating to that directory automatically redirects to its index.html for example, if it contains one?

If I have this in my app.yaml:

- url: /demos
  static_dir: demos

and the demos directory contains an index.html page, how can I tell App Engine to automatically redirect to that page?

share|improve this question
You should clarify which programming language you're using on GAE. I'm going to guess Python? – cliff.meyers Jul 3 '11 at 23:31

2 Answers

up vote 3 down vote accepted

App Engine uses regular expression matches on the request path to determine what script to call or document to serve. If you just have the one index document, you can do it like this:

- url: /demos/
  static_files: demos/index.html
  upload: demos/index\.html

More generally, you can define static files for paths ending in slashes ('directories') like this:

- url: /(.*)/
  static_files: \1/index.html
  upload: .*/index\.html
share|improve this answer
So the answer is "not really" but this is pretty close. – dez Sep 5 '11 at 13:28
@dez How is this different to what you expected? – Nick Johnson Sep 6 '11 at 1:10

For GAE/J, add the following to your web.xml file.

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

www.example.com/test/ will now serve www.example.com/test/index.html

share|improve this answer

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.