代码之家  ›  专栏  ›  技术社区  ›  joshuapoehls

如何在Google AppEngine的静态目录中设置默认页面

  •  2
  • joshuapoehls  · 技术社区  · 14 年前

    app.yaml 我有文件:

    handlers:
    - url: /resume
      static_dir: resume
    

    /resume 我有一个文件夹 index.htm 文件。我希望导航到时显示此文件 http://myapp/resume --我怎么告诉盖伊 应该是此目录中的默认页吗?

    1 回复  |  直到 14 年前
        1
  •  1
  •   systempuntoout    14 年前

    尝试将此添加到 app.yaml static_dir 宣言:

    - url: /resume
      static_files: resume/index.htm
      upload: resume/index.htm