谷歌应用引擎中的Web应用程序格式错误

时间:2017-09-23 22:02:09

标签: php twitter-bootstrap google-app-engine

我创建了一个PHP web应用程序,它在localhost中运行良好,但是当我通过GAE开发服务器运行它时格式不正确。

你知道为什么吗?

格式正确:

Correct format 格式不正确:

enter image description here

的app.yaml:

runtime: php55
api_version: 1

handlers:
    - url: /.*
      script: index.php

1 个答案:

答案 0 :(得分:1)

您必须为静态文件指定处理程序,以便随部署的应用程序一起上传:

runtime: php55
api_version: 1

handlers:
- url: /images
  static_dir: images
- url: /css
  static_dir: css
# Catch all handler for any other requests:
- url: /.*
  script: index.php

Read more about using the static_dir or static_files options