Sample code for 30+ languages & platforms
Rust

CanonicalizeUrl

See more Spider Examples

The CanonicalizeUrl method is a utility function that canonicalizes a URL into a standard form to avoid duplicates. For example, "http://www.chilkatsoft.com/" and "http://www.chilkatsoft.com/default.asp" are the same URL.

Chilkat Rust Downloads

Rust
let spider = chilkat::Spider::new();

// Does a DNS lookup to find the default domain, which may or may not include the "www." depending on the DNS results.
// Also domain names are converted to lowercase:
println!("{}", spider.canonicalize_url("http://www.ChilkatSoft.com/").unwrap_or_default());

// CanonicalizeUrl will drop the HTML fragment:
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com/purchase2.asp#buyZip").unwrap_or_default());

// If a username/password is in the URL, it gets dropped:
println!("{}", spider.canonicalize_url("http://username:password@www.chilkatsoft.com/purchase2.asp#buyZip").unwrap_or_default());

// Port 80 and 443 are dropped:
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com:80/purchase2.asp").unwrap_or_default());
println!("{}", spider.canonicalize_url("https://www.paypal.com:443/").unwrap_or_default());

// Removes default pages:
// default.asp, index.html, index.htm, default.html, index.htm, default.htm
// index.php, index.asp, default.php, .cfm, .aspx, ,php3, .pl, .cgi, .txt, .shtml, .phtml
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com/index.asp").unwrap_or_default());
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com/index.asp").unwrap_or_default());
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com/index.php").unwrap_or_default());
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com/index.pl").unwrap_or_default());
println!("{}", spider.canonicalize_url("http://www.chilkatsoft.com/index.htm").unwrap_or_default());

// Output:
// http://chilkatsoft.com/
// http://chilkatsoft.com/purchase2.asp
// http://chilkatsoft.com/purchase2.asp
// http://chilkatsoft.com/purchase2.asp
// https://www.paypal.com/
// http://chilkatsoft.com/
// http://chilkatsoft.com/
// http://chilkatsoft.com/
// http://chilkatsoft.com/
// http://chilkatsoft.com/