URL normalization (or URL canonicalization) is the process by which URLs are modified and standardized in a consistent manner. The goal of the normalization p
Im have a simple way to solve it. Here is my code
public static String normalizeURL(String oldLink) { int pos=oldLink.indexOf("://"); String newLink="http"+oldLink.substring(pos); return newLink; }