我正在尝试上传一些png作为Google App Engine应用程序的静态资源 在名为icons
的文件夹中有一个testImage.png文件在我指定的app.yaml文件中
- url: /icons/*.png
static_dir: icons
mime_type: image/png
但上传后,如果我尝试获取http://.appspot.com/icons/testImage.png
我得到了404
答案 0 :(得分:0)
我认为你不需要/*.png作为网址。在static_dir中,您放在此处的任何内容都必须与项目中的物理路径匹配。因此,你必须有像
这样的东西[project-dir]/icons
包含您的png。
的文件夹 - url: /icons
static_dir: icons
mime_type: image/png