我有一些我在我的网站上运行的PHP,我使用GAE来托管该网站。在app.yaml中,我有以下内容:
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /my_php/(.*\.php)
upload: my_php/(.*\.php)
appcfg.py抛出Error parsing hafelha/app.yaml: Unknown url handler type.
我想知道这是否是因为我使用python运行时和上传php脚本。
答案 0 :(得分:0)
“upload”仅适用于静态文件。默认情况下,您的应用文件夹中的所有内容都将上传。将app.yaml中的处理程序部分更改为
handlers:
- url: /my_php/(.*\.php)
script: my_php/\1
有关详细信息,请参阅https://cloud.google.com/appengine/docs/php/config/appconfig#PHP_app_yaml_Script_handlers。