Dispatcher cache rule priority
Say I have two rules in my dispatcher config:
/0001
{
/glob "/ajax/foo/bar.*"
/type "allow"
}
/0002
{
/glob "*.ajax.*"
/type "deny"
}
/0003
{
/glob "*/ajax/*"
/type "deny"
}
and i have a url like /ajax/foo/bar.x.y.json will it be cached? I thought it would as I assume the rules get applied in the order listed but this does not seem to be the case as my json is not cached.