I need to redirect only this URL https://www.mywebsite.com/?lang=en to https://www.mywebsite.com/en/
I try with this without success
RewriteCond %{REQUEST_URI} https://www.mywebsite.com/
RewriteCond %{QUERY_STRING} lang=en
RewriteRule ^(.*)$ https://www.mywebsite.com/en/ [R=301,L]