JS leitet sich zu relativen URL aus
window.location.href = '/path'; //relative to domain
Heinz
window.location.href = '/path'; //relative to domain
//To get just the relative path of a window location.
const RELATIVE_PATH = window.location.pathname;
//Only line of code:
window.location.href = '../'; //one level up