I created an App Engine application. Till now, I only have a few HTML files to serve. What can I do to make App Engine serve the index.html file whenever someone visits http
It could be done using (app.yaml):
handlers: - url: /appurl script: myapp.app - url: /(.+) static_files: staticdir/\1 upload: staticdir/(.*) - url: / static_files: staticdir/index.html upload: staticdir/index.html