我正在使用以下代码在 jQuery 中获取当前 URL。
var pathname = window.location.pathname;
console.log(pathname);
现在我有这样的网址
http://localhost/TantraProjects/CollectiveCraft/Repo/WebSite/index.php/crafts/t-lights.html
我想把网址转换成这个
http://localhost/TantraProjects/CollectiveCraft/Repo/WebSite/index.php
有没有办法像上面那样转换成 URL,不管 URL 是什么?