开发者

Google App Engine Home Page

I added like following in app.yaml

application: mywebfont
version: 1
runtime: python
api_version: 1

handlers:
- url: /font开发者_运维问答/.*
  script: font.py

- url: /
  static_files: html/index.html
  upload: static_files

- url: .*
  script: main.py

It's working fine in localhost.

After deploy , I can't check my application home page. It's always show 404 not found error.


try with:

application: mywebfont
version: 1
runtime: python
api_version: 1

    handlers:
    - url: /font/.*
      script: font.py

    - url: /
      static_files: html/index.html
      upload: html/index.html

    - url: .*
      script: main.py
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜