Forum Moderators: open
I know the
if (window!= top) top.location.href = location.href;
code will force my site to be re-loaded but that isn't a solution.
Is there a bit of code that will just stop them framing my page, so that people clicking the results in Google will get a blank page (as their site is completely empty)?
Ban the offending site from calling ANY of your files. No pages, no images, nada.
They won't be blank, 403 forbidden messages maybe, but that might be even better.
Its tricky, great care is needed, but .htaccess works wonders. -Larry
<!-- InstanceEndEditable -->
<script language="JavaScript">
<!-- Begin code
if (window!= top) top.location.href = 'disclaimer.htm';
// End code -->
</script>
it means that their site is now framing a page explaining that they are attempting to pass my content off as theirs with a link to my home page
thanks for your help - I posted in a few forums and this is one of only 2 where I got a quick and helpful reply.