URLNormalizer |
URLNormalizer.addDirectoryTrailingSlash() |
Adds a trailing slash (/) to a URL ending with a directory.
|
URLNormalizer |
URLNormalizer.addDomainTrailingSlash() |
Adds a trailing slash (/) right after the domain for URLs with no
path, before any fragment (#) or query string (?).
|
URLNormalizer |
URLNormalizer.addTrailingSlash() |
Deprecated.
|
URLNormalizer |
URLNormalizer.addWWW() |
Adds "www." domain name prefix.
|
URLNormalizer |
URLNormalizer.decodeUnreservedCharacters() |
Decodes percent-encoded unreserved characters.
|
URLNormalizer |
URLNormalizer.encodeNonURICharacters() |
Encodes all characters that are not supported characters
in a URI (not to confuse with URL), as defined
by the RFC 3986
standard.
|
URLNormalizer |
URLNormalizer.encodeSpaces() |
Encodes space characters into plus signs (+) if they are part of the
query string.
|
URLNormalizer |
URLNormalizer.lowerCaseSchemeHost() |
Converts the scheme and host to lower case.
|
URLNormalizer |
URLNormalizer.removeDefaultPort() |
Removes the default port (80 for http, and 443 for https).
|
URLNormalizer |
URLNormalizer.removeDirectoryIndex() |
Removes directory index files.
|
URLNormalizer |
URLNormalizer.removeDotSegments() |
Removes the unnecessary "." and ".." segments from the URL path.
|
URLNormalizer |
URLNormalizer.removeDuplicateSlashes() |
Removes duplicate slashes.
|
URLNormalizer |
URLNormalizer.removeEmptyParameters() |
Removes empty parameters.
|
URLNormalizer |
URLNormalizer.removeFragment() |
Removes the URL fragment (from the "#" character until the end).
|
URLNormalizer |
URLNormalizer.removeSessionIds() |
Removes a URL-based session id.
|
URLNormalizer |
URLNormalizer.removeTrailingHash() |
Removes trailing hash character ("#").
|
URLNormalizer |
URLNormalizer.removeTrailingQuestionMark() |
Removes trailing question mark ("?").
|
URLNormalizer |
URLNormalizer.removeTrailingSlash() |
Removes any trailing slash (/) from a URL, before fragment
(#) or query string (?).
|
URLNormalizer |
URLNormalizer.removeWWW() |
Removes "www." domain name prefix.
|
URLNormalizer |
URLNormalizer.replaceIPWithDomainName() |
Replaces IP address with domain name.
|
URLNormalizer |
URLNormalizer.secureScheme() |
Converts http scheme to https.
|
URLNormalizer |
URLNormalizer.sortQueryParameters() |
Sorts query parameters.
|
URLNormalizer |
URLNormalizer.unsecureScheme() |
Converts https scheme to http.
|
URLNormalizer |
URLNormalizer.upperCaseEscapeSequence() |
Converts letters in URL-encoded escape sequences to upper case.
|