我有一个问题:我想通过 JavaScript 重定向到上面的目录。我的代码:
location.href = (location.href).substr(0, (location.href).lastIndexOf('folder'));
网址如下所示:
example.com/path/folder/index.php?file=abc&test=123&lol=cool
重定向仅影响以下内容:
example.com/path/&test=123&lol=cool
但是想要这个:
例子.com/path/
我怎么能那样做?