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

前端 未结 7 761
深忆病人
深忆病人 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:15

    As a temporary fix you can do this . May be on home page load or BeginRequest .

    if(!Request.Url.Host.ToLower().contains("mysite.com")){
      Response.Redirect("error.html");
    }
    

提交回复
热议问题