I am using a proprietary CMS and it has a URL rewrite tool that I am trying to use Regex to return the URL in all lowercase.
The format of the Tool is Pattern (Where you put in what is entered by and end user) and Substitution (where you put in what you would like it changed to.
I've been trying to use Pattern : www.domain.com/.*$1[A-Z] Substitution: www.domain/com/$[a-z]
However that is not picking anything up. I've never used Regex before and need ome help.