Hello!
I have a subdomain that looks like this:
subdomain.domain.com
Since the site is bilingual, the English site loads from:
subdomain.domain.com
and the French site loads from:
subdomain.domain.com/fr/
I would like to implement a redirect to a page on the TLD. Like this:
subdomain.domain.com redirect to: domain.com/new-en-page
and:
subdomain.domain.com/fr/ redirect to: domain.com/new-fr-page
The issue of course is cannot use a wildcard for all English pages, since there is no language parameter in the English URL.
How can I setup a Rule to have all subdomain.domain.com pages redirect to the English page, and all subdomain.domain.com/fr/ pages redirect to the French pages (domain.com/new-fr-page)
Tx!