<?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; 域名变更</title>
	<atom:link href="http://www.wodidai.com/post/tag/%e5%9f%9f%e5%90%8d%e5%8f%98%e6%9b%b4/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wodidai.com</link>
	<description>猴眼看天下，记录平凡事！</description>
	<lastBuildDate>Fri, 06 Jan 2012 06:30:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<atom:link rel='hub' href='http://www.wodidai.com/?pushpress=hub'/>
		<item>
		<title>关于wordpress域名变更后的SQL策略</title>
		<link>http://www.wodidai.com/post/wordpress-sql.html</link>
		<comments>http://www.wodidai.com/post/wordpress-sql.html#comments</comments>
		<pubDate>Mon, 05 Jan 2009 08:51:44 +0000</pubDate>
		<dc:creator>许权滔</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[sql语句]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[域名变更]]></category>

		<guid isPermaLink="false">http://www.wodidai.com/post/wordpress-sql.html</guid>
		<description><![CDATA[今天突然想起娱乐视界域名变更后还没有将文章内链更换过来，印象中曾经看到过可以通过SQL语句进行快速更换内链的技术文章，当时觉得关于SQL语句的这个玩意太深奥了，我这菜鸟可整不来，所以也就没太留意！今天经过放狗搜索发现，原来这个SQL语句这么好用，只需通过phpmyadmin进行SQL语句执行就轻松搞定，回想自己当初傻傻的一个个进行人工更换内链我都后悔死了，没“文化”可真是累人呀！ 那具体如何运用这些SQL语句呢？（注意：操作之前不要忘记做好备份） SQL替换命令： UPDATE 表名 SET 字段 = REPLACE(字段,’替换内容’,'替换值’); 示例如下： UPDATE wp_options SET option_value = REPLACE(option_value,'www.wodidai.com','www.wodidai.com'); 注意上面的标点要都要用英文半角。其中wp_options就是表名，option_value就是表wp_options里的一个字段，wp_options里有siteurl和home的值。 修改option_value里的站点url和主页地址： UPDATE wp_options SET option_value = REPLACE(option_value,’替换内容’,'替换值’); 更改文章中内部链接及附件的地址： UPDATE wp_posts SET post_content = REPLACE(post_content,’替换内容’,'替换值’); 更改wordpress文章默认的永久链接： UPDATE wp_posts SET guid = REPLACE(guid,’替换内容’,'替换值’); 更改博客用户里你的网站链接：（如果你的个人资料里没有填你的博客地址，可忽略） UPDATE wp_users SET user_url = REPLACE(user_url,’替换内容’,'替换值’); 更改评论者资料里你的博客链接： UPDATE wp_users SET user_url = REPLACE(user_url,’替换内容’,'替换值’); 更改评论内容你的博客链接：（如果评论里没有你博客链接，可忽略） UPDATE wp_users [...]]]></description>
			<content:encoded><![CDATA[<p>今天突然想起<a href="http://www.wodidai.com/post/tubalu.html" target="_blank">娱乐视界域名变更</a>后还没有将文章内链更换过来，印象中曾经看到过可以通过<span style="text-decoration: underline;"><a href="http://www.wodidai.com/post/tag/sql%e8%af%ad%e5%8f%a5" class="st_tag internal_tag" rel="tag" title="标签 sql语句 下的日志">SQL语句</a></span>进行快速更换内链的技术文章，当时觉得关于SQL语句的这个玩意太深奥了，我这菜鸟可整不来，所以也就没太留意！今天经过放狗搜索发现，原来这个<span style="text-decoration: underline;">SQL语句</span>这么好用，只需通过<span style="text-decoration: underline;">phpmyadmin</span>进行<span style="text-decoration: underline;">SQL语句</span>执行就轻松搞定，回想自己当初傻傻的一个个进行人工更换内链我都后悔死了，没“文化”可真是累人呀！</p>
<p><span id="more-929"></span></p>
<p>那具体如何运用这些SQL语句呢？（<strong>注意：操作之前不要忘记做好备份</strong>）</p>
<blockquote><p><strong>SQL替换命令：</strong></p>
<div class="hl-surround"><div class="hl-main">UPDATE 表名 SET 字段 = REPLACE(字段,’替换内容’,'替换值’);</div></div>
<p>示例如下：</p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_options SET option_value = REPLACE(option_value,'www.wodidai.com','www.wodidai.com');</div></div>
<p><a href="http://pic.wodidai.com/0901/2lm79w4f.jpg" target="_blank"><img title="点击可以看大图" src="http://pic.wodidai.com/0901/2lm79w4f.jpg" alt="点击可以看大图" width="500" height="296" /></a></p>
<p>注意上面的标点要都要用英文半角。其中wp_options就是表名，option_value就是表wp_options里的一个字段，wp_options里有siteurl和home的值。</p>
<p><strong>修改option_value里的站点url和主页地址：</strong></p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_options SET option_value = REPLACE(option_value,’替换内容’,'替换值’);</div></div>
<p><strong>更改文章中内部链接及附件的地址：</strong></p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_posts SET post_content = REPLACE(post_content,’替换内容’,'替换值’);</div></div>
<p><strong>更改wordpress文章默认的永久链接：</strong></p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_posts SET guid = REPLACE(guid,’替换内容’,'替换值’);</div></div>
<p><strong>更改博客用户里你的网站链接：</strong>（如果你的个人资料里没有填你的博客地址，可忽略）</p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_users SET user_url = REPLACE(user_url,’替换内容’,'替换值’);</div></div>
<p><strong>更改评论者资料里你的博客链接</strong>：</p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_users SET user_url = REPLACE(user_url,’替换内容’,'替换值’);</div></div>
<p><strong>更改评论内容你的博客链接：</strong>（如果评论里没有你博客链接，可忽略）</p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_users SET comment_content = REPLACE(comment_content,’替换内容’,'替换值’);</div></div>
<p><strong>如果你没有安装</strong><a href="http://wordpress.org/extend/plugins/no-self-ping/" target="_blank">No Self Pings</a><strong> </strong><strong>插件，需要再执行以下操作：</strong></p>
<div class="hl-surround"><div class="hl-main">UPDATE wp_posts SET pinged = REPLACE(pinged,’替换内容’,'替换值’);</div></div>
<div class="hl-surround"><div class="hl-main">UPDATE wp_posts SET to_ping = REPLACE(to_ping,’替换内容’,'替换值’);</div></div>
</blockquote>
<p>基本上有博客地址的地方就是这些了，如果还有其它没有被修改，你在<span style="text-decoration: underline;">phpmyadmin</span>里搜索下改掉就好了。（<a href="http://forumpc.cn/2008/08/wordpress-modify-the-domain-name-strategy.html" target="_blank">资料来源</a>）</p>
<h3  class="related_post_title">更多相关文章...</h3><ul class="related_post"><li><a href="http://www.wodidai.com/post/digu-mars.html" title="还是回火星吧，地球太危险了">还是回火星吧，地球太危险了</a></li><li><a href="http://www.wodidai.com/post/wordpress-themes-fdigg.html" title="又上新皮罗-Fdigg">又上新皮罗-Fdigg</a></li><li><a href="http://www.wodidai.com/post/wordpress-external-links-error-solutions.html" title="升级wordpress2.8后台外部链接出错解决方案">升级wordpress2.8后台外部链接出错解决方案</a></li><li><a href="http://www.wodidai.com/post/wordpress-digu.html" title="在wordpress直接显示最新嘀咕">在wordpress直接显示最新嘀咕</a></li><li><a href="http://www.wodidai.com/post/google-pagerank-worpress-theme.html" title="Google PageRank更新了，我也换个皮">Google PageRank更新了，我也换个皮</a></li><li><a href="http://www.wodidai.com/post/wordpress-plugins-past-time.html" title="一个简单实用的wordpress相对时间（日期）插件">一个简单实用的wordpress相对时间（日期）插件</a></li><li><a href="http://www.wodidai.com/post/wordpress-theme-stv1.html" title="被逼整了个wordpress企业模板">被逼整了个wordpress企业模板</a></li><li><a href="http://www.wodidai.com/post/wordpress-theme-youtube.html" title="处女作：一款仿youtube主题">处女作：一款仿youtube主题</a></li><li><a href="http://www.wodidai.com/post/tubalu.html" title="娱乐视界启用新域名：tubalu.org">娱乐视界启用新域名：tubalu.org</a></li><li><a href="http://www.wodidai.com/post/baidu-hi-wordpress.html" title="将百度空间搬迁到wordpress">将百度空间搬迁到wordpress</a></li></ul><hr />
<p><small>© 许权滔 for <a href="http://www.wodidai.com">花果山寨</a>, 2009 | <a href="http://www.wodidai.com/post/wodidai-multiplayer-blog.html"><strong>2010计划</strong></a> |  <a href="http://www.wodidai.com/adsense"><strong>投放广告</strong></a> | <a href="http://feeds.feedburner.com/didai"><strong>免费订阅</strong></a><br />
Source: <a href="http://www.wodidai.com/post/wordpress-sql.html">关于wordpress域名变更后的SQL策略</a> 暂时<a href="http://www.wodidai.com/post/wordpress-sql.html#comments">34 comments</a><br />
Post tags: <a href="http://www.wodidai.com/post/tag/sql%e8%af%ad%e5%8f%a5" rel="tag">sql语句</a>, <a href="http://www.wodidai.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.wodidai.com/post/tag/%e5%9f%9f%e5%90%8d%e5%8f%98%e6%9b%b4" rel="tag">域名变更</a><br/>
转载请遵循<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh">署名-非商业性使用-相同方式共享 3.0</a>协议<br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wodidai.com/post/wordpress-sql.html/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>娱乐视界启用新域名：tubalu.org</title>
		<link>http://www.wodidai.com/post/tubalu.html</link>
		<comments>http://www.wodidai.com/post/tubalu.html#comments</comments>
		<pubDate>Sun, 21 Dec 2008 10:42:51 +0000</pubDate>
		<dc:creator>许权滔</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[301定向]]></category>
		<category><![CDATA[域名变更]]></category>
		<category><![CDATA[娱乐视界]]></category>

		<guid isPermaLink="false">http://www.wodidai.com/post/%e5%a8%b1%e4%b9%90%e8%a7%86%e7%95%8c%e5%90%af%e7%94%a8%e6%96%b0%e5%9f%9f%e5%90%8d%ef%bc%9atubaluorg.html</guid>
		<description><![CDATA[自从娱乐视界上线以来，由于域名问题不断的遭到各位童鞋们的严厉批评：既是低贱的CN米又是二级域名，很难成得了大气！更有甚者有一次向人家提出友情链接的时候却因为二级域名而被人家拒绝、鄙视！严重的伤害了那脆弱的而纯真的心灵！立志要改为现状！ 本来开始还有点犹豫不决，但前几天随着娱乐视界的访问量不断攀升，门户通又不知道那门子抽筋，不单速度变慢更弹出那个又丑又恶心的广告，综合以上几条因素我还是决定了给娱乐视界置个好窝！大家现在访问娱乐视界已经是在新服务器上的！方便的话就测个速并留个话，不管是好是坏，要实话！ 一不做就二不休，既然已经迈出了第一步，那就把域名也给它换掉！通过几天的寻找，发现了一个自认为很拉风的域名【tubalu.org】，（大家用以拼音拼一下是什么？）但自己一来英文水平太烂，二来没有信用卡，paypal上又没有钱，所以只好请人代购了！其实请人代购很方便嘛！不用自己操那份心，这个服务应该提倡！ 好了，现在应该没有人会说我的域名太烂了吧？新域名启用自然得讨好搜索引擎，幸好这是wordpress，进行域名更换后的301重定向很容易实现，我这里采用了Stephen的定向方法！这样一来，别人从搜索引擎上搜索到的结果依然可以打得开，而且又可以告知搜索引擎这个地址已经永久变更，一举两得！ 最后，当然是希望大家链接了娱乐视界的朋友进行修改一下链接地址（修改为：http://tubalu.org），没有链接的朋友如果可以也请给个链接，三品在这里先行谢过了！ 嗯！等等，还有一件事，就是tubalu.org这个域名已经启用了gmail的企业套件，要是大家觉得tubalu.org这个域名很拉风，想要一这个以这个域名为后缀的个性邮箱，也可以联系我，我给你开通！哈哈 嗯！再啰嗦一下，那位PS达人帮忙设计一下tubalu.org的logo呀？ 更多相关文章...关于wordpress域名变更后的SQL策略处女作：一款仿youtube主题&#8220;娱乐视界&#8221;上线啦！百度一夜之间大量收录了新域名 © 许权滔 for 花果山寨, 2008 &#124; 2010计划 &#124; 投放广告 &#124; 免费订阅 Source: 娱乐视界启用新域名：tubalu.org 暂时51 comments Post tags: 301定向, 域名变更, 娱乐视界 转载请遵循署名-非商业性使用-相同方式共享 3.0协议 Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>自从<a href="http://tubalu.org" target="_blank">娱乐视界</a>上线以来，由于域名问题不断的遭到各位童鞋们的严厉批评：既是低贱的CN米又是二级域名，很难成得了大气！更有甚者有一次向人家提出友情链接的时候却因为二级域名而被人家拒绝、鄙视！严重的伤害了那脆弱的而纯真的心灵！立志要改为现状！</p>
</p>
<p> <span id="more-885"></span>
</p>
<p>本来开始还有点犹豫不决，但前几天随着<u><a href="http://www.wodidai.com/post/tag/%e5%a8%b1%e4%b9%90%e8%a7%86%e7%95%8c" class="st_tag internal_tag" rel="tag" title="标签 娱乐视界 下的日志">娱乐视界</a></u>的访问量不断攀升，<a href="http://www.wodidai.com/post/tag/%e9%97%a8%e6%88%b7%e9%80%9a" target="_blank">门户通</a>又不知道那门子抽筋，不单速度变慢更弹出那个又丑又恶心的广告，综合以上几条因素我还是决定了给<u>娱乐视界</u>置个好窝！大家现在访问娱乐视界已经是在新服务器上的！方便的话就测个速并留个话，不管是好是坏，要实话！</p>
<p>一不做就二不休，既然已经迈出了第一步，那就把域名也给它换掉！通过几天的寻找，发现了一个自认为很拉风的域名【<a href="http://tubalu.org" target="_blank">tubalu.org</a>】，（大家用以拼音拼一下是什么？）但自己一来英文水平太烂，二来没有信用卡，paypal上又没有钱，所以只好请人代购了！其实请人代购很方便嘛！不用自己操那份心，这个服务应该提倡！</p>
<p>好了，现在应该没有人会说我的域名太烂了吧？新域名启用自然得讨好搜索引擎，幸好这是wordpress，进行域名更换后的301重定向很容易实现，我这里采用了<strong>Stephen</strong>的<a href="http://www.caxblog.com/2008/06/224.html" target="_blank">定向方法</a>！这样一来，别人从搜索引擎上搜索到的结果依然可以打得开，而且又可以告知搜索引擎这个地址已经永久变更，一举两得！</p>
<p>最后，当然是希望大家链接了娱乐视界的朋友进行修改一下链接地址（修改为：<a href="http://tubalu.org" target="_blank">http://tubalu.org</a>），没有链接的朋友如果可以也请给个链接，三品在这里先行谢过了！</p>
<p>嗯！等等，还有一件事，就是tubalu.org这个域名已经启用了<a href="http://mail.tubalu.org" target="_blank">gmail的企业套件</a>，要是大家觉得tubalu.org这个域名很拉风，想要一这个以这个域名为后缀的个性邮箱，也可以<a href="http://www.wodidai.com/about" target="_blank">联系我</a>，我给你开通！哈哈</p>
<p>嗯！再啰嗦一下，那位PS达人帮忙设计一下tubalu.org的logo呀？</p>
<h3  class="related_post_title">更多相关文章...</h3><ul class="related_post"><li><a href="http://www.wodidai.com/post/wordpress-sql.html" title="关于wordpress域名变更后的SQL策略">关于wordpress域名变更后的SQL策略</a></li><li><a href="http://www.wodidai.com/post/wordpress-theme-youtube.html" title="处女作：一款仿youtube主题">处女作：一款仿youtube主题</a></li><li><a href="http://www.wodidai.com/post/yulesijie.html" title="&ldquo;娱乐视界&rdquo;上线啦！">&ldquo;娱乐视界&rdquo;上线啦！</a></li><li><a href="http://www.wodidai.com/post/baidu-overnight-included-a-large-number-of-new-domain-names.html" title="百度一夜之间大量收录了新域名">百度一夜之间大量收录了新域名</a></li></ul><hr />
<p><small>© 许权滔 for <a href="http://www.wodidai.com">花果山寨</a>, 2008 | <a href="http://www.wodidai.com/post/wodidai-multiplayer-blog.html"><strong>2010计划</strong></a> |  <a href="http://www.wodidai.com/adsense"><strong>投放广告</strong></a> | <a href="http://feeds.feedburner.com/didai"><strong>免费订阅</strong></a><br />
Source: <a href="http://www.wodidai.com/post/tubalu.html">娱乐视界启用新域名：tubalu.org</a> 暂时<a href="http://www.wodidai.com/post/tubalu.html#comments">51 comments</a><br />
Post tags: <a href="http://www.wodidai.com/post/tag/301%e5%ae%9a%e5%90%91" rel="tag">301定向</a>, <a href="http://www.wodidai.com/post/tag/%e5%9f%9f%e5%90%8d%e5%8f%98%e6%9b%b4" rel="tag">域名变更</a>, <a href="http://www.wodidai.com/post/tag/%e5%a8%b1%e4%b9%90%e8%a7%86%e7%95%8c" rel="tag">娱乐视界</a><br/>
转载请遵循<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh">署名-非商业性使用-相同方式共享 3.0</a>协议<br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wodidai.com/post/tubalu.html/feed</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>百度一夜之间大量收录了新域名</title>
		<link>http://www.wodidai.com/post/baidu-overnight-included-a-large-number-of-new-domain-names.html</link>
		<comments>http://www.wodidai.com/post/baidu-overnight-included-a-large-number-of-new-domain-names.html#comments</comments>
		<pubDate>Wed, 09 Apr 2008 00:54:08 +0000</pubDate>
		<dc:creator>许权滔</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[域名变更]]></category>
		<category><![CDATA[搜索引擎]]></category>
		<category><![CDATA[收录方式]]></category>
		<category><![CDATA[百度]]></category>
		<category><![CDATA[花果山寨]]></category>

		<guid isPermaLink="false">http://www.mydidai.cn/post/%e7%99%be%e5%ba%a6%e4%b8%80%e5%a4%9c%e4%b9%8b%e9%97%b4%e5%a4%a7%e9%87%8f%e6%94%b6%e5%bd%95%e4%ba%86%e6%96%b0%e5%9f%9f%e5%90%8d.html</guid>
		<description><![CDATA[<p>自从3月25日启用新域名以来一直都非常盼望搜索引擎能够早日收录新域名，庆幸的是这个期望正在一步步的实现当中，收录最快的是google和雅虎中国，而百度却显得像个老人家一样慢吞吞的跟在后面并不着急。到昨天为止当google和雅虎中国已经收录了一千多篇文章的时候百度却还是没过百的收录，还在几十页上面徘徊，这个情况挺让我郁闷的。曾经看到过一篇文章讲百度好你看不懂301跳转语句，而由于域名变更我采用了传说</p>
]]></description>
			<content:encoded><![CDATA[<p>自从<a href="http://www.wodidai.com/post/wodidai-301-Moved.html" target="_blank"><span style="text-decoration: underline;">3月25日启用新域名</span></a>以来一直都非常盼望<a href="http://www.wodidai.com/post/tag/搜索引擎" target="_blank">搜索引擎</a>能够早日收录新域名，庆幸的是这个期望正在一步步的实现当中，收录最快的是<span style="text-decoration: underline;"><a href="http://www.wodidai.com/post/tag/google" target="_blank">google</a></span>和<span style="text-decoration: underline;"><a href="http://cn.yahoo.com" target="_blank">雅虎中国</a></span>，而<a href="http://www.wodidai.com/post/tag/百度" target="_blank">百度</a>却显得像个老人家一样慢吞吞的跟在后面并不着急。到昨天为止当<span style="text-decoration: underline;">google</span>和<span style="text-decoration: underline;">雅虎中国</span>已经收录了一千多篇文章的时候<span style="text-decoration: underline;"><a href="http://www.wodidai.com/post/tag/%e7%99%be%e5%ba%a6" class="st_tag internal_tag" rel="tag" title="标签 百度 下的日志">百度</a></span>却还是没过百的收录，还在几十页上面徘徊，这个情况挺让我郁闷的。</p>
<p>曾经看到过一篇文章讲<span style="text-decoration: underline;">百度</span>好你看不懂<span style="text-decoration: underline;">301跳转语句</span>，而由于<span style="text-decoration: underline;"><a href="http://www.wodidai.com/post/tag/%e5%9f%9f%e5%90%8d%e5%8f%98%e6%9b%b4" class="st_tag internal_tag" rel="tag" title="标签 域名变更 下的日志">域名变更</a></span>我采用了传说中对<span style="text-decoration: underline;"><a href="http://www.wodidai.com/post/tag/%e6%90%9c%e7%b4%a2%e5%bc%95%e6%93%8e" class="st_tag internal_tag" rel="tag" title="标签 搜索引擎 下的日志">搜索引擎</a></span>最友好的<a href="http://www.wodidai.com/post/Zblog-the-perfect-domain-name-replacement-migration-programme.html" target="_blank">301跳转方案</a>，所以这让我不得不怀疑<span style="text-decoration: underline;">百度</span>是否正如那文章据说的看不懂<span style="text-decoration: underline;">301跳转语句</span>？正当我百思不得其解的时候，百度却给我来了一个惊喜，早上上班后打开电脑按惯例进行对新域名<a href="http://www.wodidai.com" target="_blank">www.wodidai.com</a>的<a href="http://indexed.webmasterhome.cn/?domain=www.wodidai.com" target="_blank">收录查询</a>，却惊喜的发现百度的收录从昨天的还是<span style="color: #ff6600;"><span><span style="text-decoration: underline;">79</span></span></span>的一下子就增到了<span style="color: #ff0000;"><span style="text-decoration: underline;">1660</span></span>。看截图：</p>
<p style="text-align: center;"><img src="http://pic.wodidai.com/0804/mgdqyjxb.jpg" alt="" width="480" height="78" /></p>
<p>很明显，这是<span style="text-decoration: underline;">百度</span>昨晚<a href="http://www.wodidai.com/post/Baidu-overnight-included-a-large-number-of-new-domain-names.html">一夜之间对花果山寨的大量收录</a>的结果。据相关搜索得知，<a href="http://www.wodidai.com" target="_blank">花果山寨</a>并非首例，曾经就有人<a href="http://www.dooba.cn/wangzhanyunying/wangzhanyouhua/2007112245259.html" target="_blank">一夜被百度收录了4000页</a>，这好像是<span style="text-decoration: underline;">百度</span>特有的怪异收录方式。</p>
<p>至于那个<span style="text-decoration: underline;">百度</span>看不懂301跳转语句的怀疑我现在也找到了答案：</p>
<p style="text-align: center;"><img src="http://pic.wodidai.com/0804//13i83hza.jpg" alt="" width="448" height="94" /></p>
<p style="text-align: left;">上图很明显可以看得出，<span style="text-decoration: underline;">百度</span>对新域名其实每天都在收录，而对于旧域名却原封不动，只收录首页，所以<span style="text-decoration: underline;">百度</span>看不懂<span style="text-decoration: underline;">301跳转语句</span>的谣言就不攻自破了。</p>
<p>不管如何，这总算是好事，每个<span style="text-decoration: underline;">搜索引擎</span>都有自己的独特收录方式，反正收录就行了，之前总是担心的事情总算有个着落了，接下来就是专心做好自己的<span style="text-decoration: underline;">博客</span>就可以了~</p>
<h3  class="related_post_title">更多相关文章...</h3><ul class="related_post"><li><a href="http://www.wodidai.com/post/blog-traffic-sources.html" title="看看博客的流量来自何方">看看博客的流量来自何方</a></li><li><a href="http://www.wodidai.com/post/baidu-robots.html" title="真搞笑，堂堂百度居然看不懂robots.txt">真搞笑，堂堂百度居然看不懂robots.txt</a></li><li><a href="http://www.wodidai.com/post/zblog-the-perfect-domain-name-replacement-migration-programme.html" title="zblog更换域名的301迁移方案">zblog更换域名的301迁移方案</a></li><li><a href="http://www.wodidai.com/post/wodidai-301-moved.html" title="花果山寨又一重大变动">花果山寨又一重大变动</a></li><li><a href="http://www.wodidai.com/post/197.html" title="感觉百度比较青睐zblog博客程序">感觉百度比较青睐zblog博客程序</a></li><li><a href="http://www.wodidai.com/post/p2p-searcher.html" title="万能的电驴搜索器（儿童不宜）">万能的电驴搜索器（儿童不宜）</a></li><li><a href="http://www.wodidai.com/post/google-sitelink-of-wodidai.html" title="Google Sitelink网站链接现身花果山寨">Google Sitelink网站链接现身花果山寨</a></li><li><a href="http://www.wodidai.com/post/qiyi-invitation-code.html" title="百度奇艺网邀请码派送中&hellip;&hellip;">百度奇艺网邀请码派送中&hellip;&hellip;</a></li><li><a href="http://www.wodidai.com/post/google-please-do-not-leave-the.html" title="Google请别离开">Google请别离开</a></li><li><a href="http://www.wodidai.com/post/shizhenxiang.html" title="谁是&ldquo;史珍香&rdquo;？">谁是&ldquo;史珍香&rdquo;？</a></li></ul><hr />
<p><small>© 许权滔 for <a href="http://www.wodidai.com">花果山寨</a>, 2008 | <a href="http://www.wodidai.com/post/wodidai-multiplayer-blog.html"><strong>2010计划</strong></a> |  <a href="http://www.wodidai.com/adsense"><strong>投放广告</strong></a> | <a href="http://feeds.feedburner.com/didai"><strong>免费订阅</strong></a><br />
Source: <a href="http://www.wodidai.com/post/baidu-overnight-included-a-large-number-of-new-domain-names.html">百度一夜之间大量收录了新域名</a> 暂时<a href="http://www.wodidai.com/post/baidu-overnight-included-a-large-number-of-new-domain-names.html#comments">11 comments</a><br />
Post tags: <a href="http://www.wodidai.com/post/tag/%e5%9f%9f%e5%90%8d%e5%8f%98%e6%9b%b4" rel="tag">域名变更</a>, <a href="http://www.wodidai.com/post/tag/%e6%90%9c%e7%b4%a2%e5%bc%95%e6%93%8e" rel="tag">搜索引擎</a>, <a href="http://www.wodidai.com/post/tag/%e6%94%b6%e5%bd%95%e6%96%b9%e5%bc%8f" rel="tag">收录方式</a>, <a href="http://www.wodidai.com/post/tag/%e7%99%be%e5%ba%a6" rel="tag">百度</a>, <a href="http://www.wodidai.com/post/tag/%e8%8a%b1%e6%9e%9c%e5%b1%b1%e5%af%a8" rel="tag">花果山寨</a><br/>
转载请遵循<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh">署名-非商业性使用-相同方式共享 3.0</a>协议<br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wodidai.com/post/baidu-overnight-included-a-large-number-of-new-domain-names.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

