我有一个app.yaml文件,如下所示:
application: segmentize
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /css
static_dir: css
- url: /img(.*\.(gif|png|jpg))
static_files: img/\1
upload: img(.*\.(gif|png|jpg))
- url: /
script: index.app
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?dev
- ^(.*/)?old_ver
- ^(.*/)?resources
图像全部在本地显示。但是,一旦部署,它们就会显示为已损坏。
html中的图像设置如下:
<img src="/img/welcomeimg.png">
部署时图像是否上传?是什么导致了这个? css文件夹似乎部署没有问题。
答案 0 :(得分:2)
在img
和url
部分的upload
末尾添加斜杠:
- url: /img/(.*\.(gif|png|jpg))
static_files: img/\1
upload: img/(.*\.(gif|png|jpg))