<?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>AG&#039;s blog &#187; 博客独立</title>
	<atom:link href="http://www.allengao.com/blog/category/blogger-tutorial/feed" rel="self" type="application/rss+xml" />
	<link>http://www.allengao.com</link>
	<description>关注独立博客,网络赚钱以及博客赚钱</description>
	<lastBuildDate>Sun, 05 Feb 2012 16:09: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" />
		<item>
		<title>重复的元说明与重复的标题标记</title>
		<link>http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html</link>
		<comments>http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html#comments</comments>
		<pubDate>Sat, 02 May 2009 13:13:02 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[canonical]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[唯一]]></category>
		<category><![CDATA[重复的元说明]]></category>
		<category><![CDATA[重复的标题标记]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html</guid>
		<description><![CDATA[前些天登录Google 管理员查看自己的博客，在故障诊断里的内容分析中看到了大量的重复的元说明与重复的标题标记。使用Canonical属性之后一切OK
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/nndnndnndnnd.html' rel='bookmark' title='NND,Godaddy说撞墙就撞墙了'>NND,Godaddy说撞墙就撞墙了</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>前些天登录Google 管理员查看自己的博客，在故障诊断里的内容分析中看到了大量的<strong>重复的元说明</strong>与<strong>重复的标题标记。</strong></p>
<h2>一、具体表现如下：</h2>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" title="重复的元说明与重复的标题标记" src="http://www.allengao.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2F_g1H0QYST-Oo%2FSfw_AFt7WOI%2FAAAAAAAAANc%2FZmKxzpy6UME%2Fs800%2F重复的元说明与重复的标题标记.jpg" alt="重复的元说明与重复的标题标记" /><br />
一般包含两个URL，一个是我设置的permalink，另外的是permalink+?postcomment=true或者是permalink+?comment=true。</p>
<p><span id="more-418"></span></p>
<p>真搞不懂Google的蜘蛛从哪里找到的这些带参数的链接。。。</p>
<h2>二、造成<strong>重复的元说明</strong>的原因</h2>
<p>分析了一下原因，应该是&#8221;重复的页面&#8221;造成的，也就是说因为上面的两个URL所对应的网页内容是一样的(本来就是同一篇文章,内容当然一样了),Google的蜘蛛就认为是重复的页面,从而也就造成了<strong>重复的元说明。</strong></p>
<h2>三、解决方法</h2>
<p>网上搜索一番，找到了解决方法，只要告诉Google那个页面是&#8221;正宗&#8221;的就可以了。这就需要用到link标签的一个新属性-<strong>Canonical</strong>了，支持者有三大巨头：Google、Yahoo和微软。<strong>Canonical</strong>属性可以用来指定一个网页的正宗链接版本，从而在支持<strong>Canonical</strong>属性的搜索引擎的结果页面中显示&#8221;正宗&#8221;版本的链接并且消除<strong>重复的元说明</strong>与<strong>重复的标题标记</strong>问题。</p>
<p>WordPress添加<strong>Canonical</strong>属性的具体操作方法：</p>
<ol>
<li>手工添加代码<br />
比较省事，在header.php中加上一条<br />
&lt;?php if ( is_singular() ) echo &#8216;&lt;link rel=&#8221;canonical&#8221; href=&#8221;&#8216; . get_permalink() . &#8216;&#8221; /&gt;&#8217;; ?&gt;<br />
至于添加的位置,就找一个&lt;link rel=xxx&gt;的放一起吧.</li>
<li>使用<strong>Canonical插件<br />
</strong>我也没有用过<strong>Canonical插件</strong>，就不推荐了。可以在你的博客地址/wp-admin/plugin-install.php页面中搜索<strong>Canonical</strong>，挑个星级高的，在线安装激活即可。</li>
</ol>
<h2>四、效果</h2>
<p>原来有一百多条<strong>重复的元说明</strong>，添加<strong>Canonical</strong>属性之后，现在还剩下5条，估计过段时间就没有了~~~</p>
<p>4b2f870d</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/nndnndnndnnd.html' rel='bookmark' title='NND,Godaddy说撞墙就撞墙了'>NND,Godaddy说撞墙就撞墙了</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
</ol></p><a href="http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html">本文链接: http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2009. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html#comments">22 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/canonical" rel="tag">canonical</a>, <a href="http://www.allengao.com/blog/tag/permalink" rel="tag">permalink</a>, <a href="http://www.allengao.com/blog/tag/url" rel="tag">url</a>, <a href="http://www.allengao.com/blog/tag/%e5%94%af%e4%b8%80" rel="tag">唯一</a>, <a href="http://www.allengao.com/blog/tag/%e9%87%8d%e5%a4%8d%e7%9a%84%e5%85%83%e8%af%b4%e6%98%8e" rel="tag">重复的元说明</a>, <a href="http://www.allengao.com/blog/tag/%e9%87%8d%e5%a4%8d%e7%9a%84%e6%a0%87%e9%a2%98%e6%a0%87%e8%ae%b0" rel="tag">重复的标题标记</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/wordpress-canonical-permalink-meta-tag-title.html/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>博客独立之空间篇</title>
		<link>http://www.allengao.com/blog/blogger-tutorial-hosting.html</link>
		<comments>http://www.allengao.com/blog/blogger-tutorial-hosting.html#comments</comments>
		<pubDate>Tue, 14 Apr 2009 13:00:54 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[独立]]></category>
		<category><![CDATA[独立博客]]></category>
		<category><![CDATA[空间]]></category>
		<category><![CDATA[虚拟主机]]></category>

		<guid isPermaLink="false">http://www.allengao.com/?p=401</guid>
		<description><![CDATA[距离上篇博客独立之域名篇已经两个多月了，罪过罪过，时间都浪费掉了。从今天起，"改邪归正"，得多写一些有意义的文章了。

注册好了域名，接下来的当然是空间的问题了... ...
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/nndnndnndnnd.html' rel='bookmark' title='NND,Godaddy说撞墙就撞墙了'>NND,Godaddy说撞墙就撞墙了</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>距离上篇<a title="Permalink to 博客独立之域名篇" rel="bookmark" href="http://www.allengao.com/blog/domain-blogger-steps.html">博客独立之域名篇</a>已经两个多月了，罪过罪过，时间都浪费掉了。从今天起，&#8221;改邪归正&#8221;，得多写一些有意义的文章了。</p>
<p>注册好了域名，接下来的当然是空间的问题了。</p>
<p>空间，准确的说现在空间提供商提供的大部分都是虚拟主机，除了虚拟主机之外，还有VPS（比虚拟主机高级一些，资源独享）以及独立主机（整台服务器都给你用）。对一般的blogger甚至小型网站论坛来说，虚拟主机都可以胜任，而且也是最经济实惠的。但是一旦流量、用户数达到一定程度，虚拟主机就不够用了，必须使用VPS或者独立主机。</p>
<p><span id="more-401"></span></p>
<p>一、先说免费的空间</p>
<p>免费的虚拟主机优点当然是不用花钱了，但是缺点也不少。因为免费，所以有的免费空间就强制在页面上显示广告，另外空间的稳定性也得不到保障。</p>
<p>但是，也有例外，稳定性速度都有保障的当属Google App Engine了，可以免费托管python应用，<a title="GAE支持java" href="http://googleappengine.blogspot.com/2009/04/seriously-this-time-new-language-on-app.html" target="_blank">现在已经支持java了</a>。对于我们blogger来说，也可以使用<a title="支持Google免费空间（GAE）的Python博客" href="http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html" target="_blank">python博客程序</a>在Google App Engine搭建自己的独立博客（Google App Engine支持绑定域名）。<a title="Permalink to Google App Engine (GAE)注册与部署" rel="bookmark" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html">Google App Engine (GAE)注册与部署</a></p>
<p>其他的免费虚拟主机有很多，国内的就不说了，空间小，限制多。国外的000webhost不错，不过中国IP地址是不能够申请的，只能通过<a title="免费VPN" href="http://www.allengao.com/blog/free-vpn-ag.html">VPN</a>注册。速度稳定性都还可以。</p>
<p>二、再说说收费的空间</p>
<p>除了Google App Engine，其他的免费空间都不是很靠谱。万一哪天数据丢失，不再免费了，会弄得我们手忙脚乱。所以独立博客购买收费空间是很有必要的，当然了，价钱便宜量又足那就更好了。</p>
<ol>
<li>国内的收费空间价格相对于国外空间要高一些，而且即时你规规矩矩地备案了，&#8221;未谈国事&#8221;，也可能因为&#8221;信息安全问题&#8221;而被&#8221;疯网&#8221;。</li>
<li>国外空间最大的软肋就是IP问题，有可能撞墙，自己购买一个独立IP可以在很大程度上避免这个问题。国外空间最常见的plan就是容量巨大甚至无限制，流量上千GB，不过这种空间100%是Over Selling。想想也不对劲嘛，哪有无限的空间给你用？用不了多少，流量达到一定程度之后，就会以其他的理由限制你对空间的使用了，比如CPU超标之类~~~</li>
</ol>
<p>国外空间服务商有很多很多，比较常见的有Lunar Pages, Godaddy, Blue Host, Dream Host等等等等。千万不要相信那些所谓的空间主机评测网，他们根本不是搞评测的，而是做CPS的，你通过他的链接购买主机空间，他们会得到提成，不要奢望他们会给出什么中肯的评测意见，只要是能申请到的，返款比例高的，他们都会推荐给你。。。</p>
<p>我个人用过Hostgator, Godaddy还有Lunar Pages。Hostgator速度最快，Lunar Pages次之，Godaddy最慢。Hostgator和Lunar Pages都提供CPanel控制面板。Godaddy的控制面板是自己开发的，也算好用，也很强大。三款主机都提供程序的一键安装，比如WordPress以及其他常见的博客程序，常见的论坛程序等等。</p>
<p>Lunar Pages还赠送一个域名。Godaddy 也送微软，facebook和AdWords的优惠券。</p>
<p>至于价格，官方的价格也要每月5~7美元，一年算下来也要60~80多美元，也不便宜，其实大家完全不必花这么多的钱，网络上有很多提供主机空间代购的<a title="mjj是什么" href="http://www.jifforever.cn/blog/post/236.html" target="_blank">MJJ</a>。。。通过这些MJJ，我们甚至只要花20元RMB就可以买到Lunar Pages的主机，还送一个域名~~~放心，买来的主机空间和自己掏钱在官方买来的是一样一样滴，O(∩_∩)O哈哈~</p>
<p>最后，给我现在使用的Hostgator做个广告，wpchina.org提供代购，120元RMB/年，新手方案只要68元。比专搞空间和域名的MJJ卖的要贵一点，但是我觉得Hostgator的速度和稳定性还是对得起这个价钱的。</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/nndnndnndnnd.html' rel='bookmark' title='NND,Godaddy说撞墙就撞墙了'>NND,Godaddy说撞墙就撞墙了</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
</ol></p><a href="http://www.allengao.com/blog/blogger-tutorial-hosting.html">本文链接: http://www.allengao.com/blog/blogger-tutorial-hosting.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2009. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/blogger-tutorial-hosting.html#comments">15 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/%e7%8b%ac%e7%ab%8b" rel="tag">独立</a>, <a href="http://www.allengao.com/blog/tag/%e7%8b%ac%e7%ab%8b%e5%8d%9a%e5%ae%a2" rel="tag">独立博客</a>, <a href="http://www.allengao.com/blog/tag/%e7%a9%ba%e9%97%b4" rel="tag">空间</a>, <a href="http://www.allengao.com/blog/tag/webhosting" rel="tag">虚拟主机</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/blogger-tutorial-hosting.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>博客独立之域名篇</title>
		<link>http://www.allengao.com/blog/domain-blogger-steps.html</link>
		<comments>http://www.allengao.com/blog/domain-blogger-steps.html#comments</comments>
		<pubDate>Fri, 06 Feb 2009 03:55:28 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[域名]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/domain-blogger-steps.html</guid>
		<description><![CDATA[博客独立之域名篇,首页早早的就放上了“博客独立N部曲”的导航，忙着瞎折腾，一直没有机会写这个N部曲，哈哈。现在折腾告一段落，我又有时间来写这个系列主题了。就从域名开始吧。
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/mjj-year-summary.html' rel='bookmark' title='我快变成MJJ了。。。'>我快变成MJJ了。。。</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>首页早早的就放上了“博客独立N部曲”的导航，忙着瞎折腾，一直没有机会写这个N部曲，哈哈。现在折腾告一段落，我又有时间来写这个系列主题了。就从域名开始吧。</p>
<p> <span id="more-347"></span>
<p>独立博客与一般BSP博客的最明显的区别就在于域名，一般的BSP仅提供二级域名甚至子目录（像百度空间，二级域名都不给你用，只给你二级域名 hi.baidu.com下的一个子目录），而独立博客大都使用Top Level Domain（即顶级域名，其实严格来说，我们注册的都是二级域名，COM,NET,ORG等等才是顶级域名，allengao.com是二级域名。不过大家都叫顺口了，allengao.com这样的也就叫顶级域名了），不清楚何谓顶级域名的可以去wiki或百度百科，也有一部分独立博客使用免费的二级域名，像<a title="免费域名" href="http://www.allengao.com/sites/freedomain" target="_blank" rel="nofollow">http://www.allengao.com/sites/freedomain</a>. 总之独立博客拥有域名的所有权。</p>
<p>1、如何选择域名    <br />域名就是独立博客在网上的身份证，用来标示你的博客。域名选择大致分为以下几种:</p>
<ul>
<li>网名昵称型。AG这样的（<a title="AG&#39;s blog - 好大一蜘蛛" href="http://www.allengao.com" target="_blank">www.allengao.com</a>） </li>
<li>主题性。<a title="Manual to Get Paid Online" href="http://www.GetPaidManual.com" target="_blank">www.GetPaidManual.com</a>，一看就知道是做什么的 </li>
<li>混沌型。表现为无任何意义，概因想要的域名被注册而导致。。。 </li>
</ul>
<p>想一个称心如意的域名是一件很让人头疼的事情，大部分独立博客都会选择自己的网名、昵称作为域名，一旦发现被注册了，有些就会选择主题相关的域名（当然，也有一部分博客一开始就想注册一个主题相关的域名以便更好的SEO），有一些就会选择毫无意义型了。</p>
<p>2、如何选择域名后缀    <br />当然了，首选COM，因为COM是最普遍的域名后缀，在好多非IT人士的观念中，只有.COM才是正统的网站，其他的都不上档次，囧。当然了，这只是心理作用。人家月光博客不是用.INFO吗？    <br />但是记住一条，万不得以不要使用CN域名（<a href="http://www.allengao.com/blog/cn-spam-omg.html">cn域名白菜价的后果</a>），除非你能做到你的博客上的内容和评论完全“河蟹不低俗”，否则你就会被“蜇疼来蜇疼去”。。。    <br />其实除了COM,CN还有很多很多的域名后缀，像ME,NAME,CC都很适合做博客。</p>
<p>3、哪里注册域名    <br />域名注册首选国外域名注册商，因为他们大都是ICANN顶级代理，拥有较高的权限。在国内注册的话，价格高不说，域名转出很麻烦，甚至域名所有权都有问题。国外注册AG推荐godaddy，价格适中，偶尔会有0.99美元的优惠券爆出，呵呵。其实大家不必在意没有赶上0.99美元的域名注册，如果你想认真、长期的做博客的话，首年的6刀省不省都是无所谓的，因为以后续费都是一个价，7美元左右，在国内找人代购或者代为续费的话，只要30~50RMB即可。    <br />有些童鞋会担心在国外注册域名，DNS会被河蟹。这个不用担心，大不了用国内的免费DNS服务，速度还快呐，O(∩_∩)O哈哈~</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/mjj-year-summary.html' rel='bookmark' title='我快变成MJJ了。。。'>我快变成MJJ了。。。</a></li>
</ol></p><a href="http://www.allengao.com/blog/domain-blogger-steps.html">本文链接: http://www.allengao.com/blog/domain-blogger-steps.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2009. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/domain-blogger-steps.html#comments">16 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/%e5%9f%9f%e5%90%8d" rel="tag">域名</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/domain-blogger-steps.html/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>独立博客图片外链补遗-使用Google Docs</title>
		<link>http://www.allengao.com/blog/use-google-docs-hotlink-image.html</link>
		<comments>http://www.allengao.com/blog/use-google-docs-hotlink-image.html#comments</comments>
		<pubDate>Sun, 11 Jan 2009 21:22:46 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[docs]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[图片]]></category>
		<category><![CDATA[外链]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/use-google-docs-hotlink-image.html</guid>
		<description><![CDATA[独立博客图片外链的选择补遗，大家还可以使用Google Docs外链图 片，墙大哥总不至于连google.com都不放过吧
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/bb-gg-google-rank.html' rel='bookmark' title='挖哈哈，转载的文章也能排前面'>挖哈哈，转载的文章也能排前面</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html' rel='bookmark' title='支持Google免费空间（GAE）的Python博客'>支持Google免费空间（GAE）的Python博客</a></li>
<li><a href='http://www.allengao.com/blog/google-search-wiki.html' rel='bookmark' title='遭遇Google Search Wiki'>遭遇Google Search Wiki</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="独立博客图片外链的选择" href="http://www.allengao.com/blog/image-hosting-blog-selection.html" target="_blank">独立博客图片外链的选择</a>补遗，大家还可以使用Google Docs外链图<img style="display: inline; margin-left: 0px; margin-right: 0px" src="https://docs.google.com/locales/zh/CN/images/docsslogo.gif" align="right" /> 片，墙大哥总不至于连docs.google.com都不放过吧</p>
<p>创建一个新文档，从本机插入图片，然后共享→以网页形式查看(预览)，就可以得到图片的外链地址了。</p>
<p> <span id="more-303"></span>
<p>现在我是越来越离不开Google提供的服务了。。。在线书签用的是Google工具条，Gmail被我设成了firefox的主页，每天打开电脑，先打开firefox看看邮件，接着Gtalk，然后是Google Reader看我关注的博客有没有更新。有点想法先记录在Google Docs中，或者干脆在Google Docs写博客，有时间再复制到Windows Live Writer中发布（WordPress后台是在不是很方便）。</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/bb-gg-google-rank.html' rel='bookmark' title='挖哈哈，转载的文章也能排前面'>挖哈哈，转载的文章也能排前面</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html' rel='bookmark' title='支持Google免费空间（GAE）的Python博客'>支持Google免费空间（GAE）的Python博客</a></li>
<li><a href='http://www.allengao.com/blog/google-search-wiki.html' rel='bookmark' title='遭遇Google Search Wiki'>遭遇Google Search Wiki</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol></p><a href="http://www.allengao.com/blog/use-google-docs-hotlink-image.html">本文链接: http://www.allengao.com/blog/use-google-docs-hotlink-image.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2009. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/use-google-docs-hotlink-image.html#comments">5 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/docs" rel="tag">docs</a>, <a href="http://www.allengao.com/blog/tag/google" rel="tag">google</a>, <a href="http://www.allengao.com/blog/tag/%e5%9b%be%e7%89%87" rel="tag">图片</a>, <a href="http://www.allengao.com/blog/tag/%e5%a4%96%e9%93%be" rel="tag">外链</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/use-google-docs-hotlink-image.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>开博44天之后的小结</title>
		<link>http://www.allengao.com/blog/summary-after44-days.html</link>
		<comments>http://www.allengao.com/blog/summary-after44-days.html#comments</comments>
		<pubDate>Tue, 06 Jan 2009 13:58:01 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[小结]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/summary-after44-days.html</guid>
		<description><![CDATA[AG's blog - 好大一蜘蛛开博已经44天了，写个小结，呵呵
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html' rel='bookmark' title='支持Google免费空间（GAE）的Python博客'>支持Google免费空间（GAE）的Python博客</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>从2008年11月24号的第一篇文章（<a title="独立博客图片外链的选择" href="http://www.allengao.com/blog/image-hosting-blog-selection.html" target="_blank">独立博客图片外链的选择</a>）到现在，博客已经开张44天了。</p>
<p>2008年，在我心中是很重要的一年，因为是我走向社会的元年。而且历史也赋予了2008年很多的意义，年初南方雨雪冰冻、四川汶川地震、北京奥运会、中国宇航员漫步太空、改革开放30周年、金融危机。</p>
<p> <span id="more-287"></span>
<p>说说博客吧。我拥有的第一个博客是在百度空间，第一篇文章就是copy纳兰容若的一首词，然后很长一段时间都没有更新。。。然后在blogger安家，谁知“墙大哥”却让blogger时不时地“抽风”，于是开始独立博客之旅~~~</p>
<p>做独立博客需要域名和空间啊，域名刚开始图便宜整了个CN，后来发现续费竟然要75￥，于是信用卡美元帐户的处女刷就给了Godaddy。当时为了选空间我是“上看下看，左看右看”，挑花了眼，都是因为囊中羞涩啊。域名好了就得整空间了，因为坊间盛传国内主机的种种劣迹，于是选了一个国外的免费空间，用了一段时间，感觉不错，于是花钱买了2.95$/mo的plan。谁知没过几天，站长说那个站不做了，付费用户都迁移到新站。迁移之后发现速度大不如前，而且总是出现权限问题，与站长联系，站长也搞不定，囧。于是请求退款，在国内找主机合租，找到了Jiang，花了120大洋在12号主机安家，速度尚可，前段时间我又买了一款Godaddy的Deluxe Plan，暂时就不搬家了。</p>
<p>在Jiang的12号主机安家之后，我才开始写博客，到今天一共是44天，算上本文，一共是64篇文章，181条评论，64篇文章中有一篇是转载-“<a title="村里有个白白和姑姑" href="http://www.allengao.com/blog/baibai-gugu-baidu-google.html" target="_blank">村里有个白白和姑姑</a>”。现在的IP是60左右，平均每次访问2.91页。昨天IP是99，昙花一现，呵呵，今天又回到60-80的水平了。</p>
<p>再说说盈利。   <br />支出：域名7.69$，空间120￥    <br />收入：AdSense：191.55$（之前做的一个论坛，靠它养这个博客，哈哈）    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 付费评论：20￥+2.46$    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 阿里妈妈：0.75￥，囧    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 淘客推广：0.60￥，再囧    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 杂七杂八的“网赚”收入：50$</p>
<p>还有一些纸上富贵就不列出来了，等拿到手再说。</p>
<p>2008年底，PR更新，<a title="AG&#39;s blog - 好大一蜘蛛" href="http://www.allengao.com">AG&#8217;s blog &#8211; 好大一蜘蛛</a>升了一小格。</p>
<p>我的目标很明确，持续blogging，保持原创性，PR升到一定程度投入SR的怀抱，AdSense，阿里妈妈和淘客推广还是要做的。</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html' rel='bookmark' title='支持Google免费空间（GAE）的Python博客'>支持Google免费空间（GAE）的Python博客</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol></p><a href="http://www.allengao.com/blog/summary-after44-days.html">本文链接: http://www.allengao.com/blog/summary-after44-days.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2009. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/summary-after44-days.html#comments">22 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/blog" rel="tag">博客</a>, <a href="http://www.allengao.com/blog/tag/%e5%b0%8f%e7%bb%93" rel="tag">小结</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/summary-after44-days.html/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>AG Godaddy虚拟主机免费共享计划</title>
		<link>http://www.allengao.com/blog/ag-free-web-hosting-plan.html</link>
		<comments>http://www.allengao.com/blog/ag-free-web-hosting-plan.html#comments</comments>
		<pubDate>Wed, 31 Dec 2008 02:04:57 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[AG]]></category>
		<category><![CDATA[Godaddy]]></category>
		<category><![CDATA[主机]]></category>
		<category><![CDATA[免费]]></category>
		<category><![CDATA[共享]]></category>
		<category><![CDATA[空间]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/ag-free-web-hosting-plan.html</guid>
		<description><![CDATA[AG整了一年的Godaddy Deluxe Plan，也没有几个域名，闲着浪费，现在免费提供10个共享名额，需要的Gmail/Gtalk AG。 
空间流量我也不做限制了，但只能放blog程序，且仅限于个人blogging使用，不得放“墙大哥”不喜欢的东东。
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/blogger-tutorial-hosting.html' rel='bookmark' title='博客独立之空间篇'>博客独立之空间篇</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>本博客托管在 Jiang 的博客主机上<a href="http://aa.cx/hostby " target="_balnk">(Plan-1 ￥68/年)</a></p>
<p><a href="http://aa.cx/hostby " target="_balnk"></a>分割线&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-分割线<br />
最近A记录：<span id="ctl00_StandardPageContentPlaceHolder_ctl00_lblServerIPAddress">97.74.144.192</span></p>
<p><span>本主机将于2009年12月29日到期，请各位做好备份<br />
</span></p>
<p><span style="text-decoration: line-through;"><span style="color: #ff0000;">2009年7月30日19:55:39更新：</span></span></p>
<h3><span style="text-decoration: line-through;"><span style="color: #000000;"><strong>请修改A记录：72.167.232.52</strong></span></span></h3>
<p>AG整了一年的Godaddy Deluxe Plan，也没有几个域名，闲着浪费，现在免费提供10个共享名额，需要的Gmail/Gtalk AG。<br />
空间流量我也不做限制了，但只能放blog程序，且仅限于个人blogging使用，不得放“墙大哥”不喜欢的东东。</p>
<p>AG免费主机共享计划详细描述：<br />
名额：10<br />
空间：150GB我们一起用<br />
月流量：1.5TB我们一起用<br />
绑定域名数量：我不做限制<br />
MySQL：1个<br />
FTP：1个<br />
价格：Free<br />
期限：暂定2009年12月29号<br />
Deluxe Plan配置:Unix, 150GB空间，1.5TB月流量，MySQL 25 x 200 MB</p>
<p><span id="more-263"></span></p>
<p><span style="color: #ff0000;">免责声明</span>：<br />
AG仅提供免费空间，如遇墙大哥发飙、中美光缆断掉等等不可抗因素，AG会尽力解决，但不保证一定会OK，不承担数据丢失之责任，请各位blogger做好备份！</p>
<p><span style="text-decoration: line-through;">另外，想独自发展的，AG提供代购服务，50元人民币即可购买一年的Deluxe Plan，或者150元人民币购买带有独立IP的Deluxe Plan。难以置信是吧，不过，It&#8217;s True！</span></p>
<p><span style="color: #ff0000;">2009-4-19 更新：</span><a title="Permalink to 博客独立之空间篇" rel="bookmark" href="../blog/blogger-tutorial-hosting.html">博客独立之空间篇</a></p>
<p>申请免费主机流程：<br />
1、详细阅读上面的内容！<br />
2、Gmail/Gtalk AG，提出申请，提供FTP用户名以及域名，如要安装WordPress，AG可以代劳。<br />
3、AG发送FTP账号密码，数据库详细信息并在下面的Google spreadsheet中更新。</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/blogger-tutorial-hosting.html' rel='bookmark' title='博客独立之空间篇'>博客独立之空间篇</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
</ol></p><a href="http://www.allengao.com/blog/ag-free-web-hosting-plan.html">本文链接: http://www.allengao.com/blog/ag-free-web-hosting-plan.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2008. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/ag-free-web-hosting-plan.html#comments">80 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/ag" rel="tag">AG</a>, <a href="http://www.allengao.com/blog/tag/godaddy" rel="tag">Godaddy</a>, <a href="http://www.allengao.com/blog/tag/%e4%b8%bb%e6%9c%ba" rel="tag">主机</a>, <a href="http://www.allengao.com/blog/tag/%e5%85%8d%e8%b4%b9" rel="tag">免费</a>, <a href="http://www.allengao.com/blog/tag/%e5%85%b1%e4%ba%ab" rel="tag">共享</a>, <a href="http://www.allengao.com/blog/tag/%e7%a9%ba%e9%97%b4" rel="tag">空间</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/ag-free-web-hosting-plan.html/feed</wfw:commentRss>
		<slash:comments>80</slash:comments>
		</item>
		<item>
		<title>wordpress2.7升级指南</title>
		<link>http://www.allengao.com/blog/wordpress27-upgrage.html</link>
		<comments>http://www.allengao.com/blog/wordpress27-upgrage.html#comments</comments>
		<pubDate>Fri, 12 Dec 2008 02:20:43 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[wordpress2.7]]></category>
		<category><![CDATA[升级]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/wordpress27-upgrage.html</guid>
		<description><![CDATA[嘿嘿，wordpress2.7最近也算热门关键词了，我来凑凑热闹
升级很简单，不要担心会变白老鼠：
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/wordpress27-release-google-reader.html' rel='bookmark' title='WordPress2.7正式版发布，Googel Reader里真是热闹啊'>WordPress2.7正式版发布，Googel Reader里真是热闹啊</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>嘿嘿，wordpress2.7最近也算热门关键词了，我来凑凑热闹<img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://iphone.svn.wordpress.org/tags/1.0/aboutscreenlogo.png" align="right" /></p>
<p>升级很简单，不要担心会变白老鼠： </p>
<ol>
<li>备份wp-content文件夹下的文件</li>
<li>上传wordpress2.7，覆盖即可（不要上传wp-content文件夹）</li>
</ol>
<p> <span id="more-134"></span>
<p>数据库是不用备份的，你觉得不保险的话，就去phpMyAdmin里面导出吧，或者你安装了自动备份软件，也可以用那个</p>
<p>下载地址：<a title="http://wordpress.org/download/" href="http://wordpress.org/download/">http://wordpress.org/download/</a> 不要使用右键另存为，否则有可能下载到旧版本，直接点击就行！</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/wordpress27-release-google-reader.html' rel='bookmark' title='WordPress2.7正式版发布，Googel Reader里真是热闹啊'>WordPress2.7正式版发布，Googel Reader里真是热闹啊</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html' rel='bookmark' title='转到Google App Engine写博客？'>转到Google App Engine写博客？</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol></p><a href="http://www.allengao.com/blog/wordpress27-upgrage.html">本文链接: http://www.allengao.com/blog/wordpress27-upgrage.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2008. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/wordpress27-upgrage.html#comments">只有1条评论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/wordpress27" rel="tag">wordpress2.7</a>, <a href="http://www.allengao.com/blog/tag/%e5%8d%87%e7%ba%a7" rel="tag">升级</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/wordpress27-upgrage.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>转到Google App Engine写博客？</title>
		<link>http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html</link>
		<comments>http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html#comments</comments>
		<pubDate>Wed, 10 Dec 2008 03:46:04 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[雕虫小技]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[Google App Engine]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html</guid>
		<description><![CDATA[昨天搞了一整天的Google App Engine，Google了几个基于Python的博客程序，还真不少，最后挑中了徐明的Micolog，跟wordpress有些相似（可以导入wordpress的文章），而且支持离线发布。
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/register-gae-google-app-engine-apply.html' rel='bookmark' title='Google App Engine (GAE)注册与部署'>Google App Engine (GAE)注册与部署</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html' rel='bookmark' title='支持Google免费空间（GAE）的Python博客'>支持Google免费空间（GAE）的Python博客</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/swf-flash-link-getdropbox.html' rel='bookmark' title='swf外链空间/flash外链空间推荐'>swf外链空间/flash外链空间推荐</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>前段时间Yahoo五年大优惠刚过，囧！现在<a title="Google App Engine" href="http://code.google.com/appengine/" target="_blank" alt="Google App Engine"><img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://code.google.com/appengine/images/appengine_lowres.jpg" align="right" /></a>只剩1.99 美元的活动了，事不宜迟，先注册一个再说，不过Yahoo!域名次年的费用可不便宜啊，要30多美元！好在Yahoo!支持域名转出，明年转到“去爹”，6.99美元整好再续费一年。</p>
<p> <span id="more-115"></span>
<p>昨天搞了一整天的Google App Engine，Google了几个基于Python的博客程序，还真不少，最后挑中了徐明的Micolog，跟wordpress有些相似（可以导入wordpress的文章），而且支持离线发布。</p>
<p>Google真是可爱，现在每个app帐户可以使用10个应用程序，以前是3个。现在好像移动手机也可以立即收到验证码了。</p>
<p><img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://code.google.com/intl/zh-CN/appengine/images/free.gif" align="left" /> 每个Google App Engine 应用程序都可使用多达 500MB 的持久存储空间以及可支持每月 500 万页面浏览量的足够带宽和 CPU。</p>
<p>先写这么多吧，看看构建在Google App Engine上Python博客样子：</p>
<p><a title="http://allengaogae.appspot.com/" href="http://allengaogae.appspot.com/">http://allengaogae.appspot.com/</a></p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/register-gae-google-app-engine-apply.html' rel='bookmark' title='Google App Engine (GAE)注册与部署'>Google App Engine (GAE)注册与部署</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/python-blog-4-google-app-engine-gae.html' rel='bookmark' title='支持Google免费空间（GAE）的Python博客'>支持Google免费空间（GAE）的Python博客</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/swf-flash-link-getdropbox.html' rel='bookmark' title='swf外链空间/flash外链空间推荐'>swf外链空间/flash外链空间推荐</a></li>
</ol></p><a href="http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html">本文链接: http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2008. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html#comments">15 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/gae" rel="tag">gae</a>, <a href="http://www.allengao.com/blog/tag/google-app-engine" rel="tag">Google App Engine</a>, <a href="http://www.allengao.com/blog/tag/python" rel="tag">Python</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/use-google-app-engine-python-blog-blogging.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>挖哈哈，转载的文章也能排前面</title>
		<link>http://www.allengao.com/blog/bb-gg-google-rank.html</link>
		<comments>http://www.allengao.com/blog/bb-gg-google-rank.html#comments</comments>
		<pubDate>Sun, 07 Dec 2008 14:40:55 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[姑姑]]></category>
		<category><![CDATA[排名]]></category>
		<category><![CDATA[白白]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/bb-gg-google-rank-3.html</guid>
		<description><![CDATA[这篇“村里有个白白和姑姑”其实是我在aw' blog那里看到的，据说原创是丧家犬也有乡愁 看着挺有意思，我就给转过来配了两幅图。。。竟然排在了首页第二，hoho，Google给了我莫大的动力！
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/use-google-docs-hotlink-image.html' rel='bookmark' title='独立博客图片外链补遗-使用Google Docs'>独立博客图片外链补遗-使用Google Docs</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>这篇“<a href="http://www.allengao.com/blog/baibai-gugu-baidu-google.html" target="_blank">村里有个白白和姑姑</a>”其实是我在<a title="aw&#39;s blog" href="http://www.awflasher.com/blog" target="_blank">aw</a>那里看到的（就是排No.1的那个），据说原创是<font color="#ff0000">丧家犬也有乡愁 </font><font color="#000000">看着挺有意思，我就给转过来配了两幅图。。。而且保留了原作者的链接，谁知竟然排在了首页第2，hoho，Google给了我莫大的动力！</font></p>
<p><font color="#000000">而百度，将近两个月了，百度一下还是百不着<a href="http://www.allengao.com">www.allengao.com</a> 。。。 </font></p>
<p> <span id="more-108"></span><img src="http://pic.allengao.com/images/allengo/rank2bbgg.jpg" />
</p>
<p>不过，Google把我的博客当成了非“中国的网页”。。。因为我的博客主机在米国。。。</p>
<p>update:我已经在Google管理员中心把www.allengao.com改成定位于中国啦</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/use-google-docs-hotlink-image.html' rel='bookmark' title='独立博客图片外链补遗-使用Google Docs'>独立博客图片外链补遗-使用Google Docs</a></li>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol></p><a href="http://www.allengao.com/blog/bb-gg-google-rank.html">本文链接: http://www.allengao.com/blog/bb-gg-google-rank.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2008. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/bb-gg-google-rank.html#comments">7 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/google" rel="tag">google</a>, <a href="http://www.allengao.com/blog/tag/%e5%a7%91%e5%a7%91" rel="tag">姑姑</a>, <a href="http://www.allengao.com/blog/tag/%e6%8e%92%e5%90%8d" rel="tag">排名</a>, <a href="http://www.allengao.com/blog/tag/%e7%99%bd%e7%99%bd" rel="tag">白白</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/bb-gg-google-rank.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>wordpress搬家小心.htaccess造成404错误</title>
		<link>http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html</link>
		<comments>http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html#comments</comments>
		<pubDate>Thu, 04 Dec 2008 02:55:05 +0000</pubDate>
		<dc:creator>AG</dc:creator>
				<category><![CDATA[博客独立]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html</guid>
		<description><![CDATA[wordpress搬家造成404错误，原因是直接复制过来的.htaccess文件权限不对
相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>昨天虚拟主机升级，要搬家。先用phpm<a title="AG&#39;s blog - 好大一蜘蛛" href="http://www.allengao.com" target="_blank"><img title="htaccess - hosting on pic.allengao.com" style="display: inline; margin-left: 0px; margin-right: 0px" alt="htaccess - hosting on pic.allengao.com" src="http://pic.allengao.com/images/allengo/ghosthtaccess.jpg" align="right" /></a>yadmin把数据 库导出。然后，图省事，我就把WordPress程序文件打包全部下载下来，再传到新空间解压。数据库导入，域名解析OK之后，打开首页也OK，所有的文章都还在，以为万事大吉。。。谁知随便点了一片文章，出来的却是404错误页面，而且也不是我自定义的404页面，囧 </p>
<p> <span id="more-75"></span>
<p>我是百思不得其解，挠掉了几根头发之后，想到了在Linux主机上有permission一说，极有可能复制之后的文件permission与之前的不一样，导致wordpress没有权限读写.htaccess文件，而我有自定义了permalink，所以导致wordpress找不到文章页面。我也顾不上查看.htaccess的权限了，直接删除，然后在wordpress后台重新设置一遍permalink，回到ftp一看，.htaccess文件又回来了，这回的权限是644，文章页面打开也正常了。</p>
<p>以后再搬家，.htacccess就不要带着啦。</p>
<p>相关文章:<ol>
<li><a href='http://www.allengao.com/blog/image-hosting-blog-selection.html' rel='bookmark' title='独立博客图片外链的选择'>独立博客图片外链的选择</a></li>
<li><a href='http://www.allengao.com/blog/godaddy-free-web-hosting-imagehosting-subdomain.html' rel='bookmark' title='使用Godaddy带广告免费空间做图片外链服务器'>使用Godaddy带广告免费空间做图片外链服务器</a></li>
<li><a href='http://www.allengao.com/blog/wordpress27-upgrage.html' rel='bookmark' title='wordpress2.7升级指南'>wordpress2.7升级指南</a></li>
<li><a href='http://www.allengao.com/blog/ag-free-web-hosting-plan.html' rel='bookmark' title='AG Godaddy虚拟主机免费共享计划'>AG Godaddy虚拟主机免费共享计划</a></li>
<li><a href='http://www.allengao.com/blog/domain-blogger-steps.html' rel='bookmark' title='博客独立之域名篇'>博客独立之域名篇</a></li>
</ol></p><a href="http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html">本文链接: http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html</a>
<h3><strong><span style="color: #ff0000;">申请免费的<a title="免费伪顶级域名" href="http://www.co.cc/?id=156492&lang=zh-CN" target="_blank">yourname.co.cc</a>（免费域名），外加<a href="http://code.google.com/p/gapproxy/" target="_blank">Gapproxy</a>（免费程序）和<a title="GAE注册与部署" href="http://www.allengao.com/blog/register-gae-google-app-engine-apply.html" target="_blank">GAE</a>（免费空间），做自己专享的免费代理服务器</span></strong></h3>
<br/><a href="http://www.allengao.com/blog/swagbucks-wow.html" rel="bookmark" target ="_blank"title="Permalink to SwagBucks重出江湖">强烈推荐：搜索赚钱-1星期5美元零花钱</a><br/>
<p>© AG for <a href="http://www.allengao.com">AG's blog - 好大一蜘蛛</a>, 2008-2008. <a href="http://digu.com/allengo" target="_blank">跟AG一起嘀咕</a>  or <a href="http://twa.sh/user/AGatHere" target="_blank">Follow AG</a> or <a href="http://twa.sh/user/AGsATM" target="_blank">Follow AG网赚分推</a> <br /><a href="http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html#comments">13 条评论了，快来参与讨论</a> | 本文关键词: <a href="http://www.allengao.com/blog/tag/404" rel="tag">404</a>, <a href="http://www.allengao.com/blog/tag/error" rel="tag">error</a>, <a href="http://www.allengao.com/blog/tag/htaccess" rel="tag">htaccess</a>, <a href="http://www.allengao.com/blog/tag/permission" rel="tag">permission</a>, <a href="http://www.allengao.com/blog/tag/wordpress" rel="tag">wordpress</a></p><a target="_top" href="http://www.allengao.com/blog/swagbucks-wow.html"><img alt="Search & Win" title="搜索赚钱" border="0" src="http://prodegebanners.sitegrip.com/images/swagbucks-468x60Alt2.jpg"></a>]]></content:encoded>
			<wfw:commentRss>http://www.allengao.com/blog/wordpress-htaccess-404-error-permission.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

