Match /@:username
url
#10545
Match `/@:username` url
#10545
-
Hi, how to match |
Beta Was this translation helpful? Give feedback.
Answered by
kiliman
May 29, 2023
Replies: 1 comment 4 replies
-
With RR 6+, params include the entire URL segment, so it doesn't support prefixes or any type of pattern match. You will need to use |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
happylolonly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With RR 6+, params include the entire URL segment, so it doesn't support prefixes or any type of pattern match. You will need to use
/:username
and check for and strip the@
yourself.