我创建了一个PHP web应用程序,它在localhost中运行良好,但是当我通过GAE开发服务器运行它时格式不正确。
你知道为什么吗?
格式正确:
的app.yaml:
runtime: php55
api_version: 1
handlers:
- url: /.*
script: index.php
答案 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