How can I detect that these two URLs drive to the same sites (so they are the same URL) without having to use web scraping to read the content?
For example: I need to check (with a GET request)
Both url are the same site, but how can I detect?
I prefer Ruby or Python but I can use any language.
EDIT:
Another case like http://www.inprovo.com/ & http://www.inprovo.com/default.asp. This site have some random banners that change when reloads, so the HTML it's not the same with each reload.
Thank you!