Restricting Query Strings in dispatcher.any not working
I want to disable any URL with query strings but allow those that don't. The "Note:" section of Configuring Dispatcher says the following should work:
/0001 { /type "deny" /method "*" /url "/mysite/content/test/*" }
/0002 { /type "allow" /method "GET" /url "/mysite/content/test/*" }
/0003 { /type "deny" /method "GET" /url "/mysite/content/test/*" /query "*" }
When I try https://my.site.com/mysite/content/test/home.html, it is getting blocked /0003
It should work, given "If a rule contains a /query, it will only match requests that contain a query string and match the provided query pattern."
For testing purposes my /filter section only contains those 3 rules.