<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>东东有礼 &#187; archive</title>
	<atom:link href="http://leedd.com/tag/archive/feed/" rel="self" type="application/rss+xml" />
	<link>http://leedd.com</link>
	<description>东东有礼的互联网观察</description>
	<lastBuildDate>Thu, 10 May 2012 16:11:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>nginx环境下wordpress的固定链接更改</title>
		<link>http://leedd.com/2011/02/nginx-wordpress-rewrite/</link>
		<comments>http://leedd.com/2011/02/nginx-wordpress-rewrite/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 15:03:42 +0000</pubDate>
		<dc:creator>东东有礼</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[leedd]]></category>
		<category><![CDATA[po]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[虚拟主机]]></category>

		<guid isPermaLink="false">http://leedd.com/?p=1306</guid>
		<description><![CDATA[因为有个网站需要上线，而之前的主机上面一个ip对应了很多网站，不太喜欢，所以今天下午在BurstNet 购买了个...]]></description>
			<content:encoded><![CDATA[<p>因为有个网站需要上线，而之前的主机上面一个ip对应了很多网站，不太喜欢，所以今天下午在BurstNet 购买了个VPS（有两个独立ip，这样至少多个网站不会太撞车了），先折腾着玩玩试试，购买后绑定了域名并创建数据库用户及数据库（安装网站的准备工作）。</p>
<p>vps及数据库等用户名密码配置完毕后，开始安装服务器环境，可以选择lnamp环境、lamp环境或lnmp环境。 因为上面网站动态内容不多，所以选择了Lnmp一键安装包（有licess的 或是 猫的）。</p>
<p>简单的wordpress环境安装完毕后更改了默认的链接：<code>/?p=123 </code>为：/archives/%post_id%.html，不含“？p=”的链接格式看着舒服。在后台更改链接格式后刷新后及生效，但是Nginx环境得做相应的配置进行支持。之前一直用虚拟主机，这些conf文件和Rewrite规则服务商都做了很好的处理，所以不用单独修改，但是自己购买的vps完全是原生态的环境，需要自己动手，丰衣足食。<span id="more-1306"></span></p>
<p>需要修改下conf文件，纠结我很久的是该文件所在路径，好吧，我out了！！！，百度了很久才找到： “<strong> /usr/local/nginx/conf/nginx.conf</strong> “文件，因为我的wordpress上面没有安装wp-super-cache这个插件，所以我添加的代码只有一句，如下：</p>
<pre>server
 {
 listen       80;
 server_name www.zhiyouhui.com;
 index index.html index.htm index.php;
 root  /home/wwwroot;

<span style="color: #c0c0c0;"><strong>###Add by Leedd
location /
{
try_files $uri $uri/ /index.php?q=$uri&amp;$args;
}
###Add by Leedd</strong></span>

location ~ .*\.(php|php5)?$
 {
 fastcgi_pass  unix:/tmp/php-cgi.sock;
 fastcgi_index index.php;
 include fcgi.conf;
}</pre>
<p>如果安装了wp-super-cache，可以移步这里：<a href="http://goo.gl/n4RcA" target="_blank">http://goo.gl/n4RcA</a></p>
<p>然后重启Nginx：</p>
<pre><strong><code>kill -HUP `cat /usr/local/nginx/logs/nginx.pid`</code></strong></pre>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
@<a href="http://about.me/ldd">东东有礼</a><br />
最近在优化“东东有礼”这个关键字，欢迎点击页面右侧关注我的sina微博。</p>
]]></content:encoded>
			<wfw:commentRss>http://leedd.com/2011/02/nginx-wordpress-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试wordpress在Linux下面的客户端Drivel Blog Editor</title>
		<link>http://leedd.com/2010/01/fedora-linux-drivel-blog-editor/</link>
		<comments>http://leedd.com/2010/01/fedora-linux-drivel-blog-editor/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 02:55:50 +0000</pubDate>
		<dc:creator>东东有礼</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[leedd]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PR]]></category>

		<guid isPermaLink="false">http://leedd.com/?p=860</guid>
		<description><![CDATA[   今天看了http://www.chinablogs.org/viewnews-39.htm 上面介绍的几个在wp下面的客户端口，试试在Fedora下...]]></description>
			<content:encoded><![CDATA[<p>今天看了http://www.chinablogs.org/viewnews-39.htm 上面介绍的几个在wp下面的客户端口，<strong>试试在Fedora下面安装Drivel Blog Editor</strong>。<br />
<strong> Drivel Blog Editor下载地址：<a href="http://dropline.net/past-projects/drivel-blog-editor/">http://dropline.net/past-projects/drivel-blog-editor/</a></strong><br />
我下载的是二进制文件，</p>
<pre>[Lee @Leedd.Com down]$ rpm -ivh drivel-2.0.3-1.src.rpm
[Lee @Leedd.Com down]$ cd /home/Lee/rpmbuild/SPECS
[Lee @Leedd.Com SPECS]$ rpmbuild -ba drivel.spec
            ###提示缺少依赖
[Lee @Leedd.Com SPECS]$  sudo yum install gtksourceview-devel
[Lee @Leedd.Com SPECS]$ rpmbuild -ba drivel.spec</pre>
<p>正常编译通过后把i386.rpm文件写到了/home/Lee/rpmbuild/RPMS/i386/drivel-2.0.3-1.i386.rpm</p>
<pre>[Lee @Leedd.Com SPECS]$ sudo rpm -ivh /home/Lee/rpmbuild/RPMS/i386/drivel-2.0.3-1.i386.rpm</pre>
<p>登录wordpress后来 “设置－撰写－启用 WordPress，Movable Type，MetaWeblog和Blogger 的 XML-RPC发布协议” 保存</p>
<pre>[Lee @Leedd.Com SPECS]$drivel      ###运行软件</pre>
<p><span id="more-860"></span>如下图：<br />
<img src="http://leedd.com/pic/archives/20100119leedd_com/drivel-blog-edit0r-for-linux-leedd.jpg" alt="" /><br />
填写用户名、密码，日记类型填写”Movable Type”<br />
服务器地址：填写你的博客根目录+xmlrpc.php   如我的是：“http://Leedd.com.xmlrpc.php”<br />
根据个人喜好填写是否记住密码及自动登录<br />
然后就可以在Linux下用客户端发布日志了。。。。。。</p>
<p><span style="color: #0000ff;"><strong>Tips:</strong></span><br />
快捷键: ctrl+Enter 是发送文章，我写日志的时候不小心用了。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://leedd.com/2010/01/fedora-linux-drivel-blog-editor/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>未来取决于此刻所走的每一步</title>
		<link>http://leedd.com/2010/01/future-depends-on-every-step-of-the-moment-taking/</link>
		<comments>http://leedd.com/2010/01/future-depends-on-every-step-of-the-moment-taking/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:50:59 +0000</pubDate>
		<dc:creator>东东有礼</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[leedd]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[应用]]></category>

		<guid isPermaLink="false">http://leedd.com/?p=831</guid>
		<description><![CDATA[未来取决于此刻所走的每一步

这不是我受到了什么刺激发表的人生感慨，也不是励志文章，只是一个广告语，...]]></description>
			<content:encoded><![CDATA[<p>这不是我受到了什么刺激发表的人生感慨，也不是励志文章，只是一个广告语，如果是普通的一个广告也就没有什么好写的了。恰恰，它在合适的时间，出现在了合适的地点。</p>
<p><strong> “未来取决于此刻所走的每一步”德意志银行</strong>的这个广告树立在Google中国区大楼前面的路口。估计是新换上去的广告，或是我之前没有注意过。</p>
<p>这里不评论<strong>Google中国的退出</strong>，虽然我喜欢Google 的一些应用，如Google.Com、Gmail、Reader、Google Apps、Gtalk ……；也不评论<strong>我党的和谐</strong>，因为和谐的我在这个和谐的社会生活了20多年，对这个和谐社会有着复杂的感情。只是发表几张今天照的图片</p>
<p>今天下班顺便溜到TusPark，看看准备退出中国，照几张照片留念，在快到Google中国总部的时候，无意中发现了一个广告，如下图</p>
<h2>未来取决于此刻所走的每一步（背景是Google中国的大楼）：</h2>
<p><span id="more-831"></span></p>
<p><a href="http://leedd.com/wp-content/uploads/2010/01/SDC19167OK-small.jpg"><img class="alignnone size-full wp-image-832" title="SDC19167OK-small" src="http://leedd.com/wp-content/uploads/2010/01/SDC19167OK-small.jpg" alt="" width="670" height="499" /></a></p>
<p><span style="color: #0000ff;"><a href="http://leedd.com/pic/archives/20100118leedd_com/leedd.com-20100118-tuspark-google.JPG"><strong>（点击查看高清） </strong></a><strong>打开比较缓慢，请打开到新窗口</strong><a href="http://leedd.com/pic/archives/20100118leedd_com/leedd.com-20100118-tuspark-google.JPG"><strong><br />
</strong></a></span></p>
<h2>不知道是不是为了Google而专门定制的广告？</h2>
<h2>在Google中国的总部前有几个人在照相留念（旁边的外国人，和部分中国人）：</h2>
<p><a href="http://leedd.com/wp-content/uploads/2010/01/SDC19138-USE-small-02.jpg"><img class="alignnone size-full wp-image-835" title="SDC19138-USE-small-02" src="http://leedd.com/wp-content/uploads/2010/01/SDC19138-USE-small-02.jpg" alt="" width="749" height="561" /></a></p>
<h2>Google中国总部内员工“悠闲”的在上网 ，这样的“悠闲”还能持续多久？</h2>
<p><strong> </strong></p>
<p><strong><a href="http://leedd.com/wp-content/uploads/2010/01/SDC19154-USE-small-03use.jpg"><img class="alignnone size-full wp-image-836" title="SDC19154-USE-small-03use" src="http://leedd.com/wp-content/uploads/2010/01/SDC19154-USE-small-03use.jpg" alt="" width="749" height="559" /></a><br />
</strong></p>
<h2><strong>高高在上的Google ！！！</strong></h2>
<p><strong><a href="http://leedd.com/wp-content/uploads/2010/01/SDC19150-USE-small-leedd-com.jpg"><img class="alignnone size-full wp-image-838" title="SDC19150-USE-small-leedd-com" src="http://leedd.com/wp-content/uploads/2010/01/SDC19150-USE-small-leedd-com.jpg" alt="" width="767" height="574" /></a><br />
</strong></p>
<p><strong><img title="gallery link=&quot;file&quot;" src="../wp-includes/js/tinymce/plugins/wpgallery/img/t.gif" alt="" /></strong></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://leedd.com/2010/01/future-depends-on-every-step-of-the-moment-taking/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>互联网的1900</title>
		<link>http://leedd.com/2010/01/chinese-internet-1900/</link>
		<comments>http://leedd.com/2010/01/chinese-internet-1900/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 03:47:14 +0000</pubDate>
		<dc:creator>东东有礼</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[CNNIC]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[po]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[市场]]></category>
		<category><![CDATA[黑客]]></category>

		<guid isPermaLink="false">http://leedd.com/?p=783</guid>
		<description><![CDATA[互联网，视频牌照,cn域名，文章版权，国外域名，国外空间，google退出中国]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;">这里所说的<span style="font-family: Liberation Serif,serif;">1900</span>是一个年份，并不是代表互联网退步到<span style="font-family: Liberation Serif,serif;">1900</span>年了，相反的，她在蹂躏中进步。庚子年，中国人民永远的伤痛，<span style="font-family: Liberation Serif,serif;">2010</span>年这个伤痕继续在互联网上延续。</p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;"> </span></p>
<p style="margin-bottom: 0cm;"><strong><span style="font-family: Liberation Serif,serif;">1.</span> 互联网的多事之秋从互联网的入口“域名”开始：</strong></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;"> </span>先是<span style="font-family: Liberation Serif,serif;">CCTV</span>狠狠的抽了<span style="font-family: Liberation Serif,serif;">CNNIC</span>一巴掌，让<span style="font-family: Liberation Serif,serif;">CNNIC</span>几年经营的<span style="font-family: Liberation Serif,serif;">cn</span>域名处于崩溃的边缘（<strong><span style="color: #0000ff;"><a href="http://news.cctv.com/special/huangdu/shouye/index.shtml">点击这里</a></span></strong>），然后个人禁止注册<span style="font-family: Liberation Serif,serif;">cn</span>域名（虽然<span style="font-family: Liberation Serif,serif;">cn</span>域名一直都是不允许个人注册，<strong><span style="color: #0000ff;"><a href="http://paranimage.com/no-cn-for-china-people/">点击这里</a></span></strong>），然后是未备案域名不予解析、再利用权力<span style="font-family: Liberation Serif,serif;">hold</span>几个站的域名解析 （<strong><span style="color: #0000ff;"><a href="http://tech.163.com/10/0105/17/5S9GP09A000915BF.html">点击这里</a></span></strong>），域名在国外？自己建立的<span style="font-family: Liberation Serif,serif;">DNS</span>，国内监管不到？没关系的，还有“伊朗黑客”（<strong><span style="color: #0000ff;"><a href="http://www.williamlong.info/archives/2052.html ">点击这里</a></span></strong>）。加上国外注册商的抢生意（<strong><span style="color: #0000ff;"><a href="http://www.webchs.com/20091223/215.html"><span style="font-family: Liberation Serif,serif;">godaddy</span>支持支付宝</a></span></strong>，<span style="color: #0000ff;"><strong><a href="http://tech.163.com/09/1218/03/5QPNS7RK000915BF.html">COM域名<span style="font-family: Liberation Serif,serif;">0.99</span>美元促销</a></strong></span>）使本来就很脆弱的国内互联网的站长们纷纷出国，域名出国，服务器出国，因为在自己家没有安全感，下雨了要到门外避避雨。</p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;"> </span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;"> </span>如果中国的网站的域名和服务器大量流转到国外的话，后果不堪设想，暂且不说海底光缆中断（<span style="color: #0000ff;"><strong><a href="http://it.sohu.com/s2006/wlgz/">点击这里</a></strong></span><span style="font-family: Liberation Serif,serif;"> </span>）及其引发的域名安全（<strong><span style="color: #0000ff;"><a href="http://www.ce.cn/cysc/tech/gjhlw/200701/05/t20070105_9992257.shtml">点击这里</a></span></strong>）和其他问题，仅对信息安全和国民经济来说也不利，大量的信息放到国外的服务器上，虽然我很相信国外的空间商比国内的职业道德高，但是东西放在别人家终归不方便、大量的服务器租用或托管转移到国外，国内的<span style="font-family: Liberation Serif,serif;">IDC</span>厂商就喝西北风了，不过能节省电力资源！</p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><strong><span style="font-family: Liberation Serif,serif;"> 2.</span> 整顿完域名就是整顿内容了</strong></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;"> </span>关于互联网的内容无外乎中国特色的“牌照”监管（<span style="color: #0000ff;"><strong><a href="http://www.bianews.com/viewnews-11463.html ">视频牌照</a></strong></span>、<strong><span style="color: #0000ff;"><a href="http://news.cnblogs.com/n/52838/">下载牌照</a></span></strong>），没有牌照你就不能做！当一个行业要牌照的时候也就是这个行业进入高速垄断的时候。（据说<span style="font-family: Liberation Serif,serif;">CCTV</span>没有牌照也很牛！没办法人家是<span style="font-family: Liberation Serif,serif;">cctv</span>，<strong><span style="color: #0000ff;"><a href="http://tech.sina.com.cn/i/2010-01-08/19503753190.shtml ">点击这里</a></span></strong>），和内容版权（<strong><span style="color: #0000ff;"><a href="http://news.xinhuanet.com/newmedia/2009-09/17/content_12069790.htm  ">视频版权</a></span></strong> ），在被蹂躏的互联网里唯一的一线光明就是图书版权的胜利了（<span style="color: #0000ff;"><strong><a href="http://www.google.org.cn/posts/google-apologises-to-chinese-writers-over-book-flap.html ">图书版权</a></strong></span>）这在不是很重视“知识产权”问题的国内很令人吃惊。</p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm;"><strong>3.         最新消息，据传Goolge.cn可能要停止运营（<span style="color: #0000ff;"><a href="http://blog.donews.com/keso/archive/2010/01/13/1580275.aspx">点击这里</a></span></strong><strong>），这是<span style="font-family: Liberation Serif,serif;">google</span>对于中国特色的无奈</strong><strong>也是中国网民的悲哀，但也不排除google以退出中国市场为筹码来做最后的一搏，因为退出是最无奈的选择，也是最后的筹码。</strong></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } -->借用<strong><span style="font-family: Liberation Serif,serif;">kero</span></strong>的一句话：“<span style="font-family: Liberation Serif,serif;">YouTube</span>、<span style="font-family: Liberation Serif,serif;">Facebook</span>、<span style="font-family: Liberation Serif,serif;">Twitter</span>、<span style="font-family: Liberation Serif,serif;">Blogger</span>、<span style="font-family: Liberation Serif,serif;">WordPress</span>、<span style="font-family: Liberation Serif,serif;">Google……</span>全世界最好的网站和服务，一个个远离中国，可能是我们这个时代作为中国人最大的悲哀。”</p>
<p style="margin-bottom: 0cm;">中国监管互联网的出发点无外乎以下几个方面：</p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;">1.</span>互联网的利益与垄断，互联网是目前国有垄断行业涉足最少的，那些国家队看到了互联网的商机和利益，纷纷踏入这个行业，挖金，蹂躏。</p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;">2.</span>舆论监控（或叫和谐社会主义），感兴趣的翻墙搜索下<span style="font-family: Liberation Serif,serif;">GFW</span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;">3.</span>圈地，互联网是趋势，先占个茅坑，算战略布局。</p>
<p style="margin-bottom: 0cm;"><span style="font-family: Liberation Serif,serif;">4.</span>树立互联网权威，这个可能性虽然很小，但也不无可，权势们认为自己才是互联网的老大，一些“暴民”屡屡用互联网“犯上”，龙颜大怒必须整治一把，才能维护自己的权威，使网络上的那些暴民不敢再 “犯上”或是跟自己过不去，起到震慑作用。</p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;">互联网的<span style="font-family: Liberation Serif,serif;">1900 . </span>这个冬天很冷，别人打我们的时候我们还能记仇，自己抽自己嘴巴的时候我们再反抽一嘴巴？</p>
<p style="margin-bottom: 0cm;">
]]></content:encoded>
			<wfw:commentRss>http://leedd.com/2010/01/chinese-internet-1900/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网站时光机archive.org及Google的域名评级策略</title>
		<link>http://leedd.com/2009/12/archive-org-and-google-domain-pr/</link>
		<comments>http://leedd.com/2009/12/archive-org-and-google-domain-pr/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 16:10:29 +0000</pubDate>
		<dc:creator>东东有礼</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[Alexa]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[leedd]]></category>
		<category><![CDATA[PR]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://leedd.com/?p=726</guid>
		<description><![CDATA[archive.org网站的其中一个很炫的功能就是记录你的网站历史，像时光穿梭机一样可以带你回到过去。

该时光...]]></description>
			<content:encoded><![CDATA[<p>archive.org网站的其中一个很炫的功能就是记录你的网站历史，像时光穿梭机一样可以带你回到过去。</p>
<p>该时光穿梭机的地址是：http://www.archive.org/web/web.php</p>
<p>如果你的网站有记录可以看到你以前网站的内容，就拿我的沉思小屋（leedd.com）来说吧，在我启用该域名之前的2004年（或许更早）就已经有人注册建站了，  点击查看：<a href="http://web.archive.org/web/*/http://leedd.com">http://web.archive.org/web/*/http://leedd.com</a></p>
<p>如下图所示(先记录下，万一某一天全部丢失了)：</p>
<p><img class="alignnone size-full wp-image-728" title="archive-log" src="http://leedd.com/wp-content/uploads/2009/12/archive-log1.jpg" alt="archive-log" /></p>
<p><img title="更多..." src="../wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><span id="more-726"></span>该URl中的*号代表所有日期，点开具体会进入到一个形如： http://web.archive.org/web/20050205130839/http://leedd.com/  的子链接 ，这个链接就是对应于当天（20050205）保存的你网站的首页信息。</p>
<p>不过我在使用中发现这个时光机并不是万能的：</p>
<p>一是不一定能收录你的网站，毕竟世界上的网站很多。</p>
<p>二是记录的网站可能很久后自动删除，比如在网站更换内容等情况下，根据我的观察，对于信息比较模糊的或是即将丢失信息的保存记录，在时光机首页对应于该日期的后面会多出一个“*”号 ， 只要存在“*”号 在不久的将来该星号对应的记录就会模糊或丢失，甚至完全丢失该日期（至少我的其中一个网站是这样）。</p>
<p>三是该网站好像有付费收录？暂时没有研究</p>
<p>因为很久以前听到一个消息说Google也要涉足于域名注册领域（目前已经开始经营了），不仅仅是为了赚取域名注册的钱，更重要的是要根据域名的注册信息（最早注册年度、DNS信息、续费时长等等）来加入对一个网站的评级， 如果有的网站注册年度较早，而且续费年度较长，注册年度早至少说明该域名相对有价值，续费年度长至少能说明域名持有人打算长期持有或是有持续做站的想法。对于DNS来说，如果一个网站的DNS启用的是像DNS1.sina.com.cn(不一定存在，仅举例说明) 这样的DNS，那么这个站肯定不是个垃圾站，即使它使用的是机器认为非常垃圾的域名，而且google会经常光顾它， 所以Google需要获得网站的“历史信息”来更好的进行搜索算法的优化。（关于google算法的问题因为没有深入研究，只是我个人的猜测，仅作为参考）</p>
]]></content:encoded>
			<wfw:commentRss>http://leedd.com/2009/12/archive-org-and-google-domain-pr/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

