It depends on a lot of things, you can try to send dmca complaint to the hosting company.
also if the site is autoscraping you should implement cannonical tag, it wont stop anything but at least then it wont hurt your rankings
Moz said:301s carry cross-domain functionality, meaning you can redirect a page at domain1.com to domain2.com and carry over those search engine metrics. This is NOT THE CASE with the Canonical URL tag, which operates exclusively on a single root domain (it will carry over across subfolders and subdomains).
was your plan for the scaper to copy the cannonical tag pointing back to the original site? Cause apparently the cannocical tag cant be cross domain (https://moz.com/blog/canonical-url-...t-advancement-in-seo-practices-since-sitemaps)
It depends on a lot of things, you can try to send dmca complaint to the hosting company.
also if the site is autoscraping you should implement cannonical tag, it wont stop anything but at least then it wont hurt your rankings
meh.. it was worth a shot. I had no idea about canonical tags until this post... maybe the programmer didnt know either.Do you really think autoscraping tools can't replace html code?
meh.. it was worth a shot. I had no idea about canonical tags until this post... maybe the programmer didnt know either.
Thanks your right.Is there anyway to stop the autoscraping?That's true but unlikely imo. People who use autoscraping tools are scaling their game up. They prepare.
Do you really think autoscraping tools can't replace html code?
Is there anyway to stop the autoscraping?
<script type='text/javascript'>
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 123)
isCtrl=true;
if (((e.which == 85) || (e.which == 65) || (e.which == 88) || (e.which == 67) || (e.which == 86) || (e.which == 2) || (e.which == 3) || (e.which == 123) || (e.which == 83)) && isCtrl == true)
{
alert('This is Function Disabled');
return false;
}
}
// right click code
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
alert('This is Function Disabled');
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
//select content code disable alok goyal
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}
</script>