The domains below are just sample domaains. I want to redirect mydomain.com/test/ (wildcard) to google.com/dl (wildcard)
I am using this codes
RewriteEngine on
RedirectMatch 301 ^/test/.*$ https://google.com/dl
But when i access https://example.com/test/hi it redirects to https://google.com/dl , instead of https://google.com/dl/hi
How can I do it? Thanks