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:
https://cloud.google.com/appengine/docs/standard/php/config/mod_rewrite

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."


And in the documentation 
https://cloud.google.com/appengine/docs/standard/php7/runtime
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!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/cf65663a-8f91-4dde-a4f2-c46b66242d58%40googlegroups.com.

Reply via email to