path = urlPath.substring(idx + 1);
urlPath = urlPath.substring(0, idx);
}
URLBuilder rootURL = URLBuilder.createFromPath(urlPath);
rootURL.setScheme(url.getProtocol());
rootURL.setHost(url.getHost());
rootURL.setPort(url.getPort());
rootURL.setUserInfo(url.getUserInfo());
return create(rootURL.toJavaURL(), "/").createRelative(path);
}