Suppose there is a page index.htm. How to make it so that when you go to http://example.appspot.com/index.htm or when you go to http://example.appspot.com this index.html is displayed in the browser?

    1 answer 1

    You need to add similar code to the handlers in app.yaml

    - url: / static_files: path/index.htm upload: path/index.htm- url: /(.+) static_files: path/\1 upload: path/(.+) 

    Read more: static file handlers .