Hi community
I want to write a generic rule to deny this type of path
/content/dam/myproject/asset.jpg/.4.json
/content/dam/myproject/asset.xls/.4.json
I already have this rule in dispatcher and its not applying for this paths
/0081
{
/type "deny"
/selectors '((sys|doc)view|query|[0-9-]+)'
/extension '(json|xml|css|js|xls)'
}
# Deny content grabbing for /content
/0082
{
/type "deny"
/path "/content"
/selectors '(feed|rss|pages|languages|blueprint|infinity|tidy)'
/extension '(json|xml|html|css|js)'
}
Please help