Hi @mahesh_gunaje ,
Your proposed configuration appears to be aimed at denying caching for pages under the /foo/login path in AEM Dispatcher. However, it seems there's a slight misunderstanding in the syntax. The configuration should look more like this:
/cache
{
/0xxx
{
/glob "*"
{
/foo/login* # Deny caching for all pages under /foo/login
/foo/login[./] # Deny caching for /foo/login itself and all pages below it
}
/type "deny"
}
}
This configuration instructs the Dispatcher to deny caching for all pages under the /foo/login path, including the login page itself, as well as any pages below it. Make sure to adjust the path (/foo/login) according to your specific URL structure.
Thanks,
Madhur