I'm changing GAE app from php55 to php73
And the problem is this:
#php55:
- url: /api1/.*
script: mod_rewrite.php
secure: always
When my api path gets queries, everything need to go to one php-script mod_rewrite.php
this was in google's own docs:
But now when I want php73:
#php73:
- url: /api1/.*
script: auto
secure: always
it does not let me put anything else than auto in there anymore
"ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: script field for handler '/api1/.*' must be set to 'auto' for runtime php73."
does not give working example how to accomplish this.
It does say about entrypoint, but that's not enough because I need to have 2 "entrypoints"
/api1/.*
and norman index.php in the root,
NOT JUST ONE!