python谷歌应用引擎中断链接图像

时间:2011-01-21 17:58:48

标签: python image google-app-engine

您好我多次尝试使用python / google应用引擎制作图片链接,但它仍显示链接断开。

我的根文件夹中包含我想要的图像的文件夹图像。

我的app.yaml文件:

handlers:

    - url: /.*
      script: helloworld.py

    - url: /images
      static_dir: images 

我的index.html:

img src="images/_image01.gif" 

2 个答案:

答案 0 :(得分:4)

处理程序按顺序匹配。 /.*将匹配任何网址,因此您的/ images处理程序将永远不会匹配。颠倒它们的顺序,并始终在app.yaml中放置/.*处理程序。

答案 1 :(得分:1)

我认为你错过了html文件中静态路径开头的'/'。尝试:

img src="/images/_image01.gif"