Does the _ah
mean anything in Google App Engine?
I\'m not looking to find out what it\'s used for or where is it located and how it works. As some answers b
Maybe it's short for 'admin handler', but that's just a guess really.
/_ah/
is a reserved URL path used by App Engine for features (mail, warmup, login, etc.) or administrative purposes.
Script handler and static file handler paths will never match this path.
It comes from apphosting, the underscore is to make it more difficult to collide with some user provided URL.
Edit: I worked at Google, apphosting was the first name they selected for AppEngine, and this name still remains in some parts of the internal configuration.