上周使用了海外版CDN,可响应时间1000毫秒,太慢了就取消了。到现在URL后面还有?参数。参数也一直在变。不知这到底是请求参数还是挂马了。不知有啥办法可以去除。如下:
/?ewxyha=u2r1i1
html?jgjsxg=1mfcv1
最近只能使用来屏蔽.........
<script type="text/javascript">
if(top != self){
top.location=self.location;
}else{
var url = location.search;
if(url){
var old_url = window.location.href;
var new_url = old_url.substring(0, old_url.indexOf('?'));
self.location = new_url;
}
}
</Script>
有什么更好的办法吗