Tried searching in PCRE Documentation. Couldn't find anything.
What does &
signify in PCRE?
Saw a usage of it in an expression like this:
(^|&)p=(about_us|contact)(&|$) [NC]
in this question: RewriteCond %{REQUEST_URI} : how to stop, if REQUEST_URI contains ?p=about or ?p=contact
I do know the meanings of ^
, $
& |
. as well as grouping.