网站被镜像后的应该如何处理呢?
时间:2024年01月21日
/来源:网络
/编辑:佚名
网站被镜像后的处理方法大全
1、ping 对方的域名 得到IP后,直接在空间或者服务器,把镜像网站的IP丢进IP黑名单。
2、网站启用HTTPS,可以防止部分程序镜像我们的网站
3、网站内调用防镜像代码,代码如下:
host = ___window.location.host; var site= "www.78moban.com";if (host!=site ){ alert(___window.location.host+':为非法镜像网站,为了您的安全正在带您回到原网站'); location.href='http://'+site+___window.location.pathname; }
把上边代码,保存成JS文件,然后在首页代码调用。
代码二也能解决
var url = top.location.href.toLowerCase();
if (url.indexOf("78moban") == -1) {
document.title = "恶意镜像";
[xss_clean]('<title>恶意镜像</title><body style="margin-top:15%"><h5 style="line-height:2.5;color:#cc0000" align="center">此网站为恶意镜像,为避免造成损失,请勿继续浏览<h6 style="line-height:2.5;" align="center">如给您造成损失,请及时拨打110报警电话!');
if (!!(window.attachEvent && !window.opera))
{ document.execCommand("stop"); }
else
{ window.stop(); }
}</h6 style="line-height:2.5;" align="center"></h5 style="line-height:2.5;color:#cc0000" align="center"></body style="margin-top:15%">
解决镜像网站,就是这么简单!还有个事,就是如果你忘了把代码里的网址改成你自己的,那我就太高兴了,哈哈!
如果自己处理不了,悄悄的给我微信发6.6毛钱的红包,哥帮你搞定!
1、ping 对方的域名 得到IP后,直接在空间或者服务器,把镜像网站的IP丢进IP黑名单。
2、网站启用HTTPS,可以防止部分程序镜像我们的网站
3、网站内调用防镜像代码,代码如下:
host = ___window.location.host; var site= "www.78moban.com";if (host!=site ){ alert(___window.location.host+':为非法镜像网站,为了您的安全正在带您回到原网站'); location.href='http://'+site+___window.location.pathname; }
把上边代码,保存成JS文件,然后在首页代码调用。
代码二也能解决
var url = top.location.href.toLowerCase();
if (url.indexOf("78moban") == -1) {
document.title = "恶意镜像";
[xss_clean]('<title>恶意镜像</title><body style="margin-top:15%"><h5 style="line-height:2.5;color:#cc0000" align="center">此网站为恶意镜像,为避免造成损失,请勿继续浏览<h6 style="line-height:2.5;" align="center">如给您造成损失,请及时拨打110报警电话!');
if (!!(window.attachEvent && !window.opera))
{ document.execCommand("stop"); }
else
{ window.stop(); }
}</h6 style="line-height:2.5;" align="center"></h5 style="line-height:2.5;color:#cc0000" align="center"></body style="margin-top:15%">
解决镜像网站,就是这么简单!还有个事,就是如果你忘了把代码里的网址改成你自己的,那我就太高兴了,哈哈!
如果自己处理不了,悄悄的给我微信发6.6毛钱的红包,哥帮你搞定!
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03