-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Ignore query string in path configuration patterns? #248
Comments
Path patterns use normal regular expressions, so we won't be modifying how regex's are evaluated. However, maybe this is helpful? #178 |
Thanks, and sorry for keeping the issue open for long. I forgot about it 🙃 Right now, I'm ignoring any query string in the pattern by doing this:
I haven't really figured out what
|
If you have Where we find this helpful at 37signals is when a page contains a content-filter feature, like a drop-down |
Ah, thanks for clarifying that. Then I believe I have to live with |
Hi,
I'm wondering if there is a possibility for patterns set in the path configuration config to ignore query strings?
Our use case is that we have one start location for a tab, e.g.
/some-path?initial_visit=true
, that we then replace with another location for any further visits (just using/some-path
). Right now our config looks something like this, which works, but feels a little bit awkward:Maybe adding an option like
"ignore_query_string": true
in theproperties
object could be an idea?Many thanks for providing this framework :)
The text was updated successfully, but these errors were encountered: