1

我有一个 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 文件夹似乎可以毫无问题地部署。

4

1 回答 1

2

imgurl和部分的末尾添加斜杠upload

- url: /img/(.*\.(gif|png|jpg))
  static_files: img/\1
  upload: img/(.*\.(gif|png|jpg))
于 2013-04-16T14:01:27.123 回答