我在为简单的 php 应用程序编辑 app.yaml 时遇到问题,该目录在根目录下包含 5 个文件
index.php config.php welcome.php share.php crossdomain.xml
我的 app.yaml
application: myapp
version: alpha-001
runtime: php
api_version: 1
handlers:
# Serve php scripts.
- url: /(.+\.php)$
script: \1
- url: /.*
script: index.php
- url: /crossdomain.xml
mime_type: text/xml
static_files: static/crossdomain.xml
upload: static/crossdomain.xml
它返回
未知的 url 处理程序类型。
在 app.yaml 中指定所有文件的正确方法是什么
提前谢谢