How can I redirect a user to home page?
Example: mywebsite.com/ddfdf/fdfdsf and I want to redirect to mywebsite.com
However I want to do it wit
maybe
var re = /^https?:\/\/[^/]+/i; window.location.href = re.exec(window.location.href)[0];
is what you're looking for?