Hi Team,
I have a requirement, wherein I have to redirect url like /secure/test-0001.html to /content/en/secure/testingdata.0001.html.
But I can see that dispatcher is rejecting access /content/en/secure/testingdata.0001.html with error
Filter rejects: GET /content/en/secure/testingdata.0001.html HTTP/1.1
Denying access to authorization checker protected resource
=====
The authchecker configuration looks like below
/auth_checker {
# request is sent to this URL with '?uri=<page>' appended
/url "/bin/<project>/wcm/permissioncheck"
/filter {
/0000 {
/glob "*"
/type "deny"
}
/0001 {
/glob "/content/en/secure*"
/type "allow"
}
}
}
Any pointers appreciated