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 that when browsing, nothing is shown. any idea ?
btw: you can figure out why i am also publishing a "sitemap.xml": it will be used to expose all myLinks
thanks diego