JS redireciona para URL relativo
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;