This is odd. If I create a policy as follows:
{
"Version": "1.0.0",
"Dependency": {
"wordpress": ">=5.3.1",
"advanced-access-manager": ">=6.1.0"
},
"Statement": [
{
"Effect": "deny",
"Resource": [
"URI:/category/information/"
]
}
]
}
When I save, it becomes:
{
"Version": "1.0.0",
"Dependency": {
"wordpress": ">=5.3.1",
"advanced-access-manager": ">=6.1.0"
},
"Statement": [
{
"Effect": "deny",
"Resource": [
"URI:\/category\/information\/"
]
}
]
}
Any slashes get prepended with backslashes - and the policy is ineffective.
Has anyone else seen this?