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