Hi all - I currently have a kirby 4 site setup with 2 languages; but for the purposes of SEO I want to change the way the home page carries out the 302 redirect on the home page which I understand is best practice.
So I want the home page to stay at:
and serve the primary language which is ‘en’ instead of redirecting to:
I’ve added this to the config but still no luck:
'languages' => [
[
'code' => 'en',
'name' => 'English',
'default' => true,
'url' => '/',
],
[
'code' => 'cy',
'name' => 'Cymraeg',
'url' => '/cy',
],
],
'language.detect' => false,
Any suggestions how to remove this redirect for the home page only?
Thanks