deny path of website instead of whole website
Is it possible to for example deny only a path of a website instead of the whole website?
oak/restricted-pathrouter.get('/restricted-path', (context) => {
context.response.status = 403;
context.response.body = "Access denied";
});