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错误。
如何修复我的处理程序,以便我可以访问该文件并获得验证?
感谢您的帮助!
答案 0 :(得分:2)
不要在/
和static_files
指令中包含前导upload
(除非文件确实位于文件系统的根目录下,这可能是一个坏主意)。< / p>