我的网站上有以下重定向脚本:
<script type="text/javascript">
if (document.referrer == "http://dontwantthisreferrer.com/") {
document.location = "http://urltoredirect.com/";
}
</script>
我的问题是:如何阻止http://dontwanthisreferrer.com的完整域?现在我只从主页重定向,而不是从http://dontwanthisreferrer.com/post-1/重定向,我想从这个域的所有地址重定向。