Translated Urls go to a 404

Hi all,

I want to use translated urls. So for instance:
/oude-kerk/toren/geschiedenis
/alte-kirche/turm/geschichte

When i go to the first url i get my page.
But when i go to my second url i get a 404.

My txt contains a slug field with the corresponding slugs.

And here a both my language settings:

nl:

<?php

return array(
    'code' => 'nl',
    'default' => true,
    'url' => '/',
    'direction' => 'ltr',
    'locale' => 'nl_NL',
    'name' => 'Nederlands',
    'translations' => []
);

de:

<?php

return [
    'code' => 'de',
    'default' => false,
    'direction' => 'ltr',
    'locale' => [
        6 => 'de'
    ],
    'name' => 'Duits',
    'translations' => [],
    'url' => '/',
];

I would like to use unprefixed urls.

Can anybody help me with this?

You need the language code for the second language

'url' => 'de'

You can’t use the same “basic URL” for both languages.

You you always get a prefix in your url?

Can i not get www.mysite.com/oude-kerk/toren/geschiedenis and www.mysite.com/alte-kirche/turm/geschichte?

It always has to be: www.mysite.com/oude-kerk/toren/geschiedenis and www.mysite.com/de/alte-kirche/turm/geschichte?

Or use
Kirby Docs: Using different domains for each language or different sub-domains.

Exactly, or theoretically a different domain (but there is currently an issue with that)