静态文件Google App Engine的处理程序

时间:2012-07-27 07:06:03

标签: python google-app-engine http

App Engine新手。我需要使用Google网站管理员验证我的网站。

这是我添加到app.yaml

的内容
handlers:

- url: /img
  static_dir: static/img

- url: /google6432717e3cdee901.html
  static_files: /google6432717e3cdee901.html
  upload: /google6432717e3cdee901.html

但访问site.com/google6432717e3cdee901.html会给我404错误。

如何修复我的处理程序,以便我可以访问该文件并获得验证?

感谢您的帮助!

1 个答案:

答案 0 :(得分:2)

不要在/static_files指令中包含前导upload(除非文件确实位于文件系统的根目录下,这可能是一个坏主意)。< / p>