Your '- url: "*/" service: default' rule in your dispatch.yaml is the cause. You specifically specify that any domain '*' without parameters should serve the default service.
E.g: 'admin-dot-XXXXX.appspot.com' conforms into your '*/' rule, so it will serve your default service. Where as '*admin*-dot-XXXXX.appspot.com */help*' does not as it has '/help' at the end, and since it also doesn't fall into your '- url: "*/admin/*"' rule either it will fall back to use normal -dot- notation routing rules <https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed#default_routing> and serve your *admin* service. - You should therefore remove your '- url: "*/"' default service rule so that it may properly default onto -dot- notation routing and serve your admin service. Note that when there isn't a rule specified in your dispatch file and there is no -dot- notation used only then will it serve the default service. -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/2f22989b-4a82-445e-b640-46e21e5af242%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
