RedirectMatch\s+301\s+\^?(/[\S]*?)\$?\s+\1\s*$
✅ Match
RedirectMatch 301 ^/example$ /example
RedirectMatch 301 ^/catalogue/vente1150$ /catalogue/vente1150
RedirectMatch 301 /old-path /old-path
❌ Does NOT Match
RedirectMatch 301 ^/example$ /example-def
RedirectMatch 301 ^/old-path$ /new-path
RedirectMatch 301 ^/example/(.*)$ /example-updated/$1