This code works in Google Chrome but not in IE and Firefox. The site "somesite.org" send me 302 (redirect). I want to redirect when it comes from a specific site (somesite.org) to a specific file in my site.
Code:
var url = document.referrer;
if (url.includes("somesite.org")) {
window.location.href = "http://forthisfile.com/this.html"
}