I would like to structure my url in the .htaccess
as follows https://exmaple.com/index.php?lang=de-DE&path=/dir/subdir/
to https://example.com/de-DE/dir/subdir/
but keep ability to add additional GET-Parameter.
For the directory i tried this but didn't work out
RewriteEngine On
RewriteRule /(.+)$ /index.php?path=$1 [L,QSA]