如何在GAE上使用webapp服务静态网页

时间:2011-06-28 12:59:47

标签: python html google-app-engine web-applications

我想知道如何使用webapp框架通过GAE提供静态HTML页面。使用python,api状态

self.response.out.write(htmlcontent)

有没有办法只提供html文件名,GAE自动服务器呢?或者我是否必须手动加载文件并使用上述功能放置内容?

1 个答案:

答案 0 :(得分:5)

您可以在app.yaml

中提供这样的静态HTML页面
- url: /
  static_files: main.html
  upload: main\.html

这将在应用的根目录(main.html)上提供文件/