在Blog中添加反向链接工具
实现这个功能,需要借助Icerocket(Icerocket是个将重点转向Blog搜索领域的搜索引擎)的Link Tracker服务。
有2种方法实现,原文如下:
1. Server installed version of Link Tracker
This version requires your server to be able handle PHP script which you need to place on the blog server. 3 steps to complete:
- Insert this code into HEAD section of all HTML pages of your blog(这里对应的是header.php):
<script language=javascript src="http://blogs.icerocket.com/cit.js" mce_src="http://blogs.icerocket.com/cit.js"></script>
- Place PHP script called “cit_client.php” on the server in the ROOT where your blog is placed! This script should be on the same domain as the whole blog. You can download zipped script here.”cit_client.php” is a script which should be placed on the server where your blog exists. Actually this script connects to our server and get a link with number of linking posts. We have to use it because IE and Mozilla security rules do not permit to load HTML content from external domain by default. 继续阅读 »

