我开发了一个网站但是当我通过键入http://phalkefmcg.com来访问它时,它会重定向到一个空白页面。但如果我访问另一个页面,如http://phalkefmcg.com/about.html,它就会正确显示。我使用过Jquery和Javascript代码,但它们都没有任何重定向代码。这是对我网站的攻击吗?我该如何解决?
答案 0 :(得分:3)
我已将问题挖掘到http://remysharp.com/downloads/jquery.marquee.js
。它说:
// you're seeing this because you're hot-link a script that can be pulled from an
// alternative source. This script is only activated after a few months of trying
// to get in touch and requesting that you stop hot linking
setTimeout(function () {
document.open();
document.write('');
document.close();
}, 2000);
console.log('Sorry, but you should not hot link files from regular blogs in case they do something like this. Best remove the hot linked files and you will be sorted again.');
因此,删除链接的JavaScript文件。 (在index.html
的第118行)
答案 1 :(得分:2)
您的JS中有错误。它似乎是从您的页面中删除所有标记。打开浏览器的开发工具控制台以查看错误。在Chrome中看到:
很抱歉,如果他们这样做,你不应该从常规博客热链接文件。最好删除热链接文件,您将再次排序。 jquery.marquee.js:9
未捕获的TypeError:对象#没有方法'infiniteCarousel'http://phalkefmcg.com/:20
未捕获的TypeError:对象#没有方法'overlay'
注意:您真的应该在这里发布代码而不是链接。一旦您的页面被修复,这个问题对社区没有任何价值。