(function () { const currentUrl = window.location.href; const urlWithoutParams = currentUrl.split("?")[0].split("#")[0]; // Entfernt GET-Parameter und Hash-Fragmente const match = urlWithoutParams.match('(.*)_(\\d+)_(\\d+)$'); if (match) { const baseUrl = match[1]; // Alles vor den Zahlen const firstNumber = match[2]; // Die erste Zahl const newUrl = baseUrl +'_'+firstNumber; // Neue URL mit nur der ersten Zahl if (urlWithoutParams !== newUrl) { window.location.href = newUrl; // Umleitung durchführen } } })();

Ups, ein Fehler!

Die Seite, die du aufgerufen hast, wurde nicht gefunden.

404