重定向到 JavaScript 中的相对 URL
2022-08-29 23:11:57
我的问题是我想通过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
但想要这个:
example.com/path/
我该怎么做?