One option if they are regularly cloning the site, would be to put some javascript on your site to check what the current URL is and redirect if invalid. I think this should work:
<script>
if (window.location.host != "ans.bissoy.com") {
window.location.replace("http://ans.bissoy.com");
}
</script>