мой app.yaml как ниже
handlers:
- url: /static
static_dir: static
- url: /static
script: /static/index.html
- url: /
script: index.html
Так что мне нужно, когда я получаю доступ к URL http://xyz.appspot.com/static …он должен показывать содержание static/index.html
…. но я получаю не найденную ошибку … тогда как http://xyz.appspot.com/static/index.html работает нормально
Вы не определили обработчик, вам нужно что-то вроде
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
Других решений пока нет …