J'ai un problème: je veux rediriger via JavaScript vers un répertoire ci-dessus. Mon code:
window.location.href = (location.href).substr(0, (location.href).lastIndexOf('folder'));
L'URL ressemble à ceci:
domain.com/path/folder/index.php?file=abc&test=123&lol=cool
La redirection affecte juste ceci:
domain.com/path/&test=123&lol=cool
Mais veux avoir ça:
domain.com/path/
Comment pourrais-je faire ça?