What does slash stand for in a index request?

Maybe a stupid question, I ask because I feel like there could be some concept about ES index that I'm not aware of (and maybe many others don't know either.). So it's worth to ask this question because it can be helpful to other users as well.

The question is - what is the difference between the two requests? to be specific, what does the slash stand for?

 GET index_name_abc
 GET /index_name_abc

Perhaps there is a concept like sub index in ES so that we can so request like below???
GET /index_A/index_sub_A/

The leading / is because it is a URL path, and paths start with a /

Those two requests are identical - the Kibana dev tools console will translate the first one into the second.

1 Like

That makes sense.

the Kibana dev tools console will translate the first one into the second.

So technically the first one is invalid url path, it works just because Dev Tools' tolerance considering user experience, is it? That also sounds reasonable. Thanks.