Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 :

...