...
Code Block |
---|
example\.com(\/\w+) |
...
OR condition
For example to check two paths in one URL condition
Code Block |
---|
example.com\/(shop|login)\/ |
...
Case insensitivity
URL conditions are case sensitive, to make them case insensitive, you can add the /i
flag :
...