How to exclude paths only when some query params are included #1653
Replies: 1 comment 1 reply
-
You can write a custom predicate with any logic you like. There is no
default that matches your requirement and there probably won't ever be one,
because it's just too much of a rare corner case.
The custom predicate is meant to be an escape hatch for exactly those cases.
…On Wed, Oct 25, 2023, 16:49 Anup Francis ***@***.***> wrote:
I have the following request URL's
/abc/def
/abc/def?time=169435354354
/abc/def/details
How do I exclude just the second URL with the request parameter
def?time=169....
So, far I have been only able to do this /abc/def** which excludes all the
3 URL's
—
Reply to this email directly, view it on GitHub
<#1653>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADI7HLOQTOLJ7TOW5M6F43YBERJJAVCNFSM6AAAAAA6PQVNXCVHI2DSMVQWIX3LMV43ERDJONRXK43TNFXW4OZVG43TMNRSG4>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
afrancis-caregility
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have the following request URL's
/abc/def
/abc/def?time=169435354354
/abc/def/details
How do I exclude just the second URL with the request parameter def?time=169....
So, far I have been only able to do this /abc/def** which excludes all the 3 URL's
Beta Was this translation helpful? Give feedback.
All reactions