How do I stop other domains from pointing to my domain?

前端 未结 7 785
深忆病人
深忆病人 2021-02-08 12:58

I recently found out that there are other domain names pointing to my website (that don\'t belong to me) and I was wondering how people can stop/prevent this from happening. I\'

7条回答
  •  佛祖请我去吃肉
    2021-02-08 13:17

    This is my solution. It really works fast and solved my problem.

    Insert this code in your .htacces

    RewriteCond %{HTTP_HOST} !^www.higueyrd.com$
    RewriteRule ^/?(.*) http://www.higueyrd.com/$1 [QSA,R=301,L]
    

    Just put your domain.

提交回复
热议问题