GiantDuck
GiantDuck

Reputation: 1064

Use PHP on Google App Engine root directory yaml

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

Answers (1)

boombatower
boombatower

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

Related Questions