I have a PHP5.5 module created on Google Cloud's App Engine and a SQL module on Google Cloud SQL.
Here is my PHP app.yaml:
application: myapp
version: 1
runtime: php55
api_version: 1
handlers:
- url: /.*
script: index.php
I am really new into Google Cloud, so I need to somehow create a subdomain such as subdomain.myapp.com
and when my users try to access http://subdomain.myapp.com
instead of http://myapp.com
, I want the server to "give" them the /subdomain/index.php
file instead of the /index.php
file.