-2

我已经开发了一个网站,但是当我通过键入http://phalkefmcg.com访问它时,它会重定向到一个空白页面。但是,如果我访问像http://phalkefmcg.com/about.html这样的另一个页面,它就会正常显示。我使用过 Jquery 和 Javascript 代码,但它们都没有任何重定向代码。这是对我网站的攻击吗?我该如何解决?

4

2 回答 2

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 文件。(在第 118 行index.html

于 2012-07-24T08:10:15.470 回答
2

您的 JS 中有错误。它似乎正在从您的页面中删除所有标记。打开浏览器的开发工具控制台以查看错误。在 Chrome 中看到:

抱歉,您不应该从普通博客中热链接文件,以防他们做这样的事情。最好删除热链接文件,您将再次排序。jquery.marquee.js:9

Uncaught TypeError: Object # has no method 'infiniteCarousel' http://phalkefmcg.com/:20

未捕获的类型错误:对象 # 没有方法“覆盖”

注意:您确实应该在此处发布代码而不是链接。一旦你的页面被修复,这个问题对社区没有任何价值。

于 2012-07-24T08:09:35.877 回答