Google App Engine app.yaml PHP scripting parameters
问题 In my GAE PHP app.yaml i am trying to do this: application: myapp version: 1 runtime: php api_version: 1 threadsafe: yes handlers: - url: /sitemap.xml static_files: sitemap.xml upload: /sitemap\.xml - url: /MyOneLink script: /myDynamicContent.php?myparam=hardcoded_value_1 - url: /MySecondLink script: /myDynamicContent.php?myparam=hardcoded_value_2 so one can browse http://example.com/MyOneLink and get the result of the dynamic php (which depends of the hardcoded myparam value) the problem is