문제가 있습니다 : JavaScript를 통해 위의 디렉토리로 리디렉션하고 싶습니다. 내 코드 :
location.href = (location.href).substr(0, (location.href).lastIndexOf('folder'));
URL은 다음과 같습니다.
example.com/path/folder/index.php?file=abc&test=123&lol=cool
리디렉션은 이것에만 영향을 미칩니다.
example.com/path/&test=123&lol=cool
그러나 이것을 원합니다 :
example.com/path/
내가 어떻게 할 수 있습니까?
window.location.replace
stackoverflow.com/questions/503093/...