Forum Moderators: Robert Charlton & goodroi
determine whether they have a copy of your site or if they are displaying it via hotlinks and iframesOr, option C, they can simply point their DNS to your physical files. If you make a change and it shows up instantly on the offending site, that's the likeliest explanation. It is the easiest way to do it from their end--but fortunately also the easiest thing to prevent at yours.
They might be using a proxy server to request and modify your content on the fly.Wouldn't this be deducible from logs? From the offending site, request several obscure interior pages that aren't closely linked, make a note of the times, check your logs to see if some mysterious IP requested those same pages at those same times.
The first answer says: "The good news is this. These are not clones or copies of your site, they are your site. Each sub-domain points to your IP address specifically." So I used his suggestion and put this in the .htaccess file:
"RewriteCond %{HTTP_HOST} ^copycatsite\.com$ [NC]
RewriteRule .* - [F,L]"
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
RewriteCond %{REQUEST_FILENAME} !^custom-403-document\.html$
RewriteCond %{HTTP_HOST} ^copycatsite\.com$ [NC]
RewriteRule .* - [F,L]"
you will need to add an exception for the specified custom 403 documentI was thinking that in this specific situation--unlike most--the recursive 403 is just what you want: “Nope, you’re not going to see one single solitary thing on my site, not even my 403 page!” :)
I was thinking that in this specific situation--unlike most--the recursive 403 is just what you want: “Nope, you’re not going to see one single solitary thing on my site, not even my 403 page!”