昨天在调试微预约的时候发现了一段统计代码,我靠着尼玛不开玩笑的么 ,自己的信息别人全能看到,果断删掉:
/public_html/wx/view/new/_wf.html
1
2
3
4
5
6
|
<div
class
=
"mfooter"
id=
"wxgjfooter"
style=
"text-align: center;width: 100%;height: 20px;line-height: 20px;margin-top:10px;"
>
<span
class
=
"sp2"
><a href=
"http://{$_SERVER['WEI_URL']}"
style=
"color: #5e5e5e;font-size: 12px;"
>@{$_SERVER[
'WEB_NAME'
]}提供技术支持</a></span>
</div>
<div style=
"width: 0px;height: 0px;overflow: hidden;"
>
<script src=
"http://s22.cnzz.com/z_stat.php?id=1000151448&web_id=1000151448"
language=
"JavaScript"
></script>
</div>
|
这里面有一段隐藏层代码,就是这个统计代码啦,删掉它或者换成你自己的
1
2
3
|
<div style=
"width: 0px;height: 0px;overflow: hidden;"
>
<script src=
"http://s22.cnzz.com/z_stat.php?id=1000151448&web_id=1000151448"
language=
"JavaScript"
></script>
</div>
|
另外一个小技巧,有些同学想彻底删除微官方下的版权信息、或者插入js广告,那就修改下面这段话吧
1
|
<span
class
=
"sp2"
><a href=
"http://{$_SERVER['WEI_URL']}"
style=
"color: #5e5e5e;font-size: 12px;"
>@{$_SERVER[
'WEB_NAME'
]}提供技术支持</a></span>
|
本文转自 gutaotao1989 51CTO博客,原文链接:http://blog.51cto.com/taoyouth/1364168