43

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 below mentioned it's a reserved path for admin stuff.

But the letters, a and h together, is it an abbreviation or something?

random
  • 9,774
  • 10
  • 66
  • 83
kovshenin
  • 31,813
  • 4
  • 35
  • 46

3 Answers3

83

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.

Joaquin Cuenca Abela
  • 2,535
  • 22
  • 21
  • @JoaquinCuencaAbela Do you have any ideas for that [similar question](https://reverseengineering.stackexchange.com/q/15416/17379)? – user2284570 May 23 '17 at 22:02
9

/_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.

bain
  • 1,710
  • 14
  • 15
systempuntoout
  • 71,966
  • 47
  • 171
  • 241
0

Maybe it's short for 'admin handler', but that's just a guess really.

Tom van Enckevort
  • 4,170
  • 1
  • 25
  • 40