jQuery で現在の URL を取得するために、以下のコードを使用しています。
var pathname = window.location.pathname;
console.log(pathname);
今、私はこのようなURLを取得しました
http://localhost/TantraProjects/CollectiveCraft/Repo/WebSite/index.php/crafts/t-lights.html
URLをこれに変換したい
http://localhost/TantraProjects/CollectiveCraft/Repo/WebSite/index.php
URLが何であれ、上記のようにURLに変換する方法はありますか?