If you make a change in your website, see if it shows up immediately on their site. If it does, they either reverse proxy the site (eg. When they get a view on the homepage, it requests your site’s homepage) or they point their site to your site’s IP address.
thanks for the reply. It was used to update a few hours after i made updates. Talked to my host…i don’t know what they did but tit no longer updates after i make updates on the main site.
the clones looks a little bit scrambled now…not everything loads. But it is still running
is it safe to ignore it now? Because as long as it is online and ranking…looks like a problem
You could temporarily set your site so they can scrape it again, add something malicious to your site (that will break their site, hide it’s content, etc), wait for them to scrape it, then repair and resecure your site.
Hey someone is cloning my website with instant automatic changes. Is there an idea like using a malicious code on my website the will affect the clone?
Is there anything in common across your logs that you can work out? Do their requests go through Cloudflare or bypass Cloudflare and hit your server directly? If they bypass, maybe look at locking down your site to only Cloudflare IPs. If they go through Cloudflare, maybe try blocking IPs/ASNs in the firewall.
While I’m not endorsing this, something like:
<script type=“text/javascript”>
var x = location.hostname;
if (x != ‘<your site>’) window.location = ‘http://example.com/’;
</script>
It’s rough but may work