Hi @ben,
i use CMS. Since Version 2 the {{item.url}} changed into /\/artikel... if the publishing is in the root. Point your mouse to the heading of an article.
index.php
...
<div class="relative z-30 flex flex-col peer w-full h-auto self-center justify-self-center gap-md pt-0 pb-0 pl-0 pr-0">
<h2 class="[&_a]:text-liver-800 [&_a]:no-underline [&_a]:font-[500] [&_a:hover]:text-liver-800 [&_a:hover]:underline [&_a:hover]:font-[500] [&_a:visited]:text-liver-800 [&_a:visited]:no-underline [&_a:visited]:font-[500] block w-auto h-auto text-liver-800 text-opacity-[100%] dark:text-opacity-[100%] font-body text-3xl font-[500] tracking-wide leading-normal not-italic text-shadow-none normal-case whitespace-none text-left" id="">
<a href="{{item.url}}">{{item.title}}</a>
</h2>
</div>
...
browser
...
<div class="relative z-30 flex flex-col peer w-full h-auto self-center justify-self-center gap-md pt-0 pb-0 pl-0 pr-0">
<h2 class="[&_a]:text-liver-800 [&_a]:no-underline [&_a]:font-[500] [&_a:hover]:text-liver-800 [&_a:hover]:underline [&_a:hover]:font-[500] [&_a:visited]:text-liver-800 [&_a:visited]:no-underline [&_a:visited]:font-[500] block w-auto h-auto text-liver-800 text-opacity-[100%] dark:text-opacity-[100%] font-body text-3xl font-[500] tracking-wide leading-normal not-italic text-shadow-none normal-case whitespace-none text-left" id="">
<a href="/\/artikel/neuer-wurf">Neuer Wurf</a>
</h2>
</div>
...
If i move the whole page to a subfolder it works.
