runtime: php55
service: default
api_version: 3
handlers:
- url: /help/.*
script: help.php
- url: .*
script: default.phpruntime: php55
service: admin
api_version: 3
handlers:
- url: .*
script: admin.phpEach PHP file, print the name of the file. For example, default.php shows "default"
So, my problem, is that I don't understand the following behavior in red.
First :
dispatch:
# Send all mobile traffic to the mobile frontend.
- url: "*/admin/*"
service: admin
# Default service serves simple hostname request.
- url: "*/"
service: default