有人用他的域名指出我的网站,我怎么能阻止?

时间:2017-01-04 16:36:59

标签: php apache ubuntu

sorgarden.se域指向我的服务器。我已经丢失了重复内容的SEO排名...

我怎么能阻止这个?来自htaccess?

1 个答案:

答案 0 :(得分:3)

您可以使用Virtual host in apache

<VirtualHost *:80>
  ServerAdmin webmaster@example.com
  DocumentRoot "/www/docs/example.com"
  ServerName host.example.com
  ServerAlias www.example.com
  ServerAlias example.com
  ErrorLog "logs/example.com-error_log"
  TransferLog "logs/example.com-access_log"
</VirtualHost>

这样,客户只有在请求example.com而不是something.se时才能获取内容。