Reputation: 1064
What app.yaml
file do I need to be able to upload default.php
, page1.php
, etc. without defining every file in app.yaml
? Thank you!
Upvotes: 0
Views: 328
Reputation: 651
Recently updated documentation https://developers.google.com/appengine/docs/php/config/appconfig:
# Serve php scripts.
- url: /(.+\.php)$
script: \1
Will serve all php scripts.
Upvotes: 4