Mam problem: chcę przekierować przez JavaScript do katalogu powyżej. Mój kod:
location.href = (location.href).substr(0, (location.href).lastIndexOf('folder'));
Adres URL wygląda następująco:
example.com/path/folder/index.php?file=abc&test=123&lol=cool
Przekierowanie wpływa tylko na to:
example.com/path/&test=123&lol=cool
Ale chcę mieć to:
example.com/path/
Jak mogłem to zrobić?
window.location.replace
stackoverflow.com/questions/503093/…