1👍
You have not anchored your regexes with ^
at the start. Without that, your first pattern will match every single URL. You should makes sure they all start with ^
.
Source:stackexchange.com
1👍
You have not anchored your regexes with ^
at the start. Without that, your first pattern will match every single URL. You should makes sure they all start with ^
.