I have a website of mine (freeofficefinder.com) that is being cloned (see here: thelawyerserviceratings.org) There are actually over 25 websites that are currently cloning our website.
Obviously this is hurting our SEO ranking greatly due to "duplicate content". Is there something that I could add to the Apache config file to ensure that only our website is rendered at the domain freeofficefinder.com. And for all other domains this is blocked?
As I can see, you web server configured to serve the same virtual host for any requested server name.
Example:
This means, anybody can set A-record to your web server IP (78.109.169.208) and your site will work on any domain. The cause is you use an asterisk
*
as a ServerName Look through your Apache configs, findServerName
andServerAlias
directives, having*
as a value, and replace*
with your actual host name (freeofficefinder.com).Then add another one
<VirtualHost>
section above yours and set aServerName *
for it. This special section will serve requests for all unknown domains like "thelawyerserviceratings.org" etc. You can put there some funny content.