Google应用引擎子文件夹无法正常工作 - PHP

时间:2014-11-06 09:11:34

标签: php python google-app-engine yaml

我的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}工作正常

1 个答案:

答案 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