Mar 30
看到这么多的说明,都得有所了解,一下只是很小的一部分。有时间再研究这个,做个标记。呵呵
原文:Answering more popular picks: meta tags and web search
发表于:2007年12月4日,星期二,上午11时53分
如果你能写好和维持准确的元标记(例如,描述性标题和为搜索机器人提供的信息),Google就可以更准确地爬行、索引并在搜索结果中显示你的网站。元标记为各种各样的客户端(例如浏览器和搜索引擎)提供信息。请记住,每一个客户端可能只解析对该客户端有用的元标记,而忽略了其他元标记(虽然它们有其他用处)。
下面是Google如何解析以下HTML页的元标记:
Mar 28
不知道这个问题会不会发生在我的系统上,还是暂时不要升级的好,过段时间有时间了再整理好了!
Wordpress 2.5 RC1刚出不久,今天又放出了RC2。之前担心有什么漏洞,升级到RC1又降回去了,但今天看到RC2,决定正式升级到2.5。
Wordpress 2.5 后台变化实在太大了,刚开始有点不习惯,得慢慢适应。不过这样一变,有些操作更人性化了,常用功能都很方便进入。
Wordpress的标签有点失败,从2.3版开始加入标签功能,功能很弱,而且标签URL不能自定义;2.5版才出自定义URL功能,已经存在的标签如果搜索引擎收录了,修改就造成死链。另外如果能批量编辑标签,就最好了。
试用了一下,新版的速度快的多了,RC到第2版,也就基本不会存在较大的问题了,准备升级的朋友可以从下面直接下载:
Mar 24
收费不明确。路由器被封。坚决投诉,不能手软,维护消费者的合法利益。
1.拨打10060,你会接入到当地网通公司的客服热线。这是个普通程序,你反映你的问题,如果客服承认问题在他们,答应解决,你不必接着向下看了;然而根据我的经验,一般客服人员的工作方式是忽悠加消遣,仅仅以灭火为目的,所以你可能受到推诿,这时候,转2。
2. 拨打10064,这是网通集团公司投诉电话。反映你的问题,一般会被记录,并层层下派,指定所在地网通公司解决。虽然问题一样的,然而情况却变了,这个解决的要求来自上级而不是客户,一般会得到比较好的重视,如果还是未解决,转3。
3.投诉至信息产业部。访问这个页面,如实填写你的问题和你的要求。反映在这儿的问题如果属实,一般可以得到较好的解决。这里也可投诉电信。
Mar 21
When we recieved this e-mail, we knew you would want to read about it:
Recently it has come to my attention that there are some serious security issues with the default RSS to Blog installations.
In my manual I recommend that everyone name the folder RSS2B3. This common folder name is part of
the security issue.
When your RSS [...]
Mar 21
Black Hat Tools from http://seoblackhat.com/category/black-hat-tools/
What is a proxy?
In it’s simplest form a proxy is a relay for data between two computers. A proxy can be anonymous, or not anonymous (transparent). As with most things one proxy does not fit all situations, so you will have to find the most appropriate proxy to the task you [...]
Mar 12
You can read a lot about what search engineers want by looking at how the search results change. You can learn a bit more by listening to how they try to guide / influence / manipulate the market while engaging in discourse. And you can learn a lot more by reading their guidelines for how [...]
Mar 12
就可以有6个地址:
www.chedong.com/
chedong.com/
www.chedong.com
chedong.com
www.chedong.com/index.php
chedong.com/index.php
如果加上一些参数,比如用于来源跟踪等还会有更多无穷无尽的地址。
www.chedong.com/?source=foobar
把URL标准化(归一化)。首先就是域名的归一化,原先的设置为: www.chedong.com / chedong.com为别名。现在改为chedong.com 301转向到www.chedong.com
<VirtualHost *:80>
ServerName chedong.com
RewriteEngine on
RewriteRule ^(.*)$ http://www.chedong.com$1 [R=301,L]
</VirtualHost>
如果没有mod_rewrite也可以设置mod_alias:
RedirectMatch 301 ^(.*)$ http://www.chedong.com
Mar 12
一、分页问题
如我们指定分页时,每页20篇。某子频道列表内文章经数据库查询为45条,则,首先我们通过查询得到如下参数:1,总页数;2,每页篇数。第二 步,for ($i = 0; $i < allpages; $i++),页面元素获取,分析,文章生成,都在此循环中执行。不同的是,die (”创建文件“.$filename.”成功!“;这句去掉,放到循环后的显示,因为该语句将中止程序执行。例:
<?php
$fp = fopen (”temp.html”,”r”);
$content = fread ($fp,filesize (”temp.html”));
$onepage = ‘20′;
$sql = “select id from article where channel=’$channelid’”;
$query = mysql_query ($sql);
$num = mysql_num_rows ($query);
$allpages = ceil ($num / $onepage);
for ($i = 0;$i<$allpages; $i++){
if ($i == 0){
$indexpath = “index.html”;
} else {
$indexpath = “index_”.$i.”html”;
}
$start = $i * $onepage;
$list = [...]