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
If you're trying to map / to index.html:
/
index.html
handlers: - url: / upload: folderpath/index.html static_files: folderpath/index.html
the url: will match on a path and supports regex.
url:
- url: /images static_dir: static_files/images
So if your image file is stored at static_files/images/picture.jpg use this:
static_files/images/picture.jpg