我的app.yaml如下所示
handlers:
- url: /static
static_dir: static
- url: /static
script: /static/index.html
- url: /
script: index.html
所以我需要的是当我访问网址http://xyz.appspot.com/static时......它应该显示static/index.html
的内容....但我找不到错误...而{{3}工作正常
答案 0 :(得分:1)
您尚未定义处理程序,需要类似
的内容handlers:
- url: /static
static_dir: static
- url: /static/
static_files: static/index.html
upload: static/index.html
- url: /
static_files: index.html
upload: index.html