Bir sorunum var: JavaScript aracılığıyla yukarıdaki bir dizine yeniden yönlendirmek istiyorum. Kodum:
location.href = (location.href).substr(0, (location.href).lastIndexOf('folder'));
URL şöyle görünür:
example.com/path/folder/index.php?file=abc&test=123&lol=cool
Yönlendirme sadece bunu etkiler:
example.com/path/&test=123&lol=cool
Ama buna sahip olmak istiyorum:
example.com/path/
Bunu nasıl yapabilirim?
window.location.replace
stackoverflow.com/questions/503093/…