Remove multiple forward slash from url
(): This is a capturing group that matches any character except a colon :, and it captures this character for later use in the replacement.
(/ {2,}): This part matches two or more consecutive forward slashes.
The replacement part $1/ uses the captured character from the first part (which is any char...
Submitted by Apon Ahmed - 9 months ago (Last modified 9 months ago)