Using the .htaccess
file, I would like to redirect www.example.com/fr/
to www.example.com/
but not other French pages that have the /fr/
root (e.g. www.example.com/fr/page-name
)
I've tried using Redirect 301 /fr/ https://example.com/
but that redirects all the French pages to the English versions, which I don't want.
Is there a way around this?