You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When activating the option languages.detect, Kirby does correctly redirect the user to the detected language slug, but does remove any params from the redirected url. I think this is due to the way the language redirect is performed in kirby/src/Cms/LanguageRoutes.php
Expected behavior
When the user with e.g. german language request opens the url my-page.com/?myquery=param the automatic redirect should push the user to my-page.com/de?myquery=param
To reproduce
Install starterkit
Set "languages" => true, "languages.detect" => true
Add two languages, e.g. en.php and de.php
Set browser to request german language
Open the frontpage with a query parameter attached.