gpt4 book ai didi

google-app-engine - 如何在 Google App Engine 上上传静态 HTML 网站?

转载 作者:太空宇宙 更新时间:2023-11-03 15:28:20 25 4
gpt4 key购买 nike

有这方面的教程吗?我的项目中有 3 个文件:

  • index.html
  • index.css
  • index.js

应该很简单,但到目前为止我迷失在庞大的 GAE 文档中。

最佳答案

您不需要像 Mark 所建议的那样在 app.yaml 中单独调出每个文件;相反,像这样的简单处理程序就足够了:

application: myapp
version: main
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /(.*)/
static_files: \1/index.html
upload: .*/index.html
- url: /.*
static_dir: static

然后将您的站点放在包含 app.yaml 的目录下名为“static”的目录中。

第一个处理程序确保在有人请求目录时随时提供 index.html。第二个处理程序直接从静态目录提供所有其他 URL。

关于google-app-engine - 如何在 Google App Engine 上上传静态 HTML 网站?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10919468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com