How can I check if two URLs are the same in javascript?
For example I wouldn't want to store both of these in a database:
or both of these:
or both of these:
...and what about GET data in URLs? My database could get really messy.
Is there a way I can convert all of the URLs into some standard form so that checking for duplicates would be much simpler?
Thanks everyone!
http://example.comis the same as onhttps://example.com. Same for your other examples. Keep that in mind. – Konrad Dzwinel Jan 19 '12 at 19:53