<?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.xiaoyulog.com/topic/tag/code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xiaoyulog.com</link>
	<description>美国VPS&#124;美国服务器&#124;美国主机&#124;VPN</description>
	<lastBuildDate>Tue, 31 Aug 2010 13:40:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Lighttpd WordPress 重写,伪静态地址</title>
		<link>http://www.xiaoyulog.com/topic/838.html</link>
		<comments>http://www.xiaoyulog.com/topic/838.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 13:15:06 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[心情]]></category>
		<category><![CDATA[LLMP]]></category>
		<category><![CDATA[伪静态]]></category>
		<category><![CDATA[程序源码]]></category>
		<category><![CDATA[重写]]></category>

		<guid isPermaLink="false">http://www.tt007.com.cn/?p=838</guid>
		<description><![CDATA[以下为WP的伪静态规则.在面板的重写设置里添加即可. url.rewrite-once = (   &#8220;^/(.*)?/?files/$&#8221; =&#62; &#8220;index.php&#8221;,   &#8220;^/(.*)?/?files/(.*)&#8221; =&#62; &#8220;wp-content/blogs.php?file=$2&#8243;,   &#8220;^/(wp-.*)$&#8221; =&#62; &#8220;$1&#8243;,   &#8220;^/([_0-9a-zA-Z-]+/)?(wp-.*)&#8221; =&#62; &#8220;$2&#8243;,   &#8220;^/([_0-9a-zA-Z-]+/)?(.*\.php)$&#8221; =&#62; &#8220;$2&#8243;,   &#8220;(\?.*)$&#8221; =&#62; &#8220;index.php$1&#8243;,   &#8220;.&#8221; =&#62; &#8220;index.php&#8221;   )]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/838.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress专用空间到底算什么？</title>
		<link>http://www.xiaoyulog.com/topic/787.html</link>
		<comments>http://www.xiaoyulog.com/topic/787.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 12:38:13 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[域名空间]]></category>
		<category><![CDATA[程序源码]]></category>

		<guid isPermaLink="false">http://www.tt007.com.cn/?p=787</guid>
		<description><![CDATA[现在很多人打着Wordpress牌子销售空间,究竟Wordpress专用空间与一般空间有什么区别呢？ 在我看来。这些纯粹是幌子。因为Wordpress这个牌子只会的限制你的使用。 所以各位完全没必要追求什么Wordpress专用空间.一般空间即可以了。]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/787.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何实现WordPress文章分页</title>
		<link>http://www.xiaoyulog.com/topic/758.html</link>
		<comments>http://www.xiaoyulog.com/topic/758.html#comments</comments>
		<pubDate>Tue, 08 Sep 2009 01:04:55 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[心情]]></category>
		<category><![CDATA[Wordpress插件]]></category>
		<category><![CDATA[分页]]></category>
		<category><![CDATA[程序源码]]></category>

		<guid isPermaLink="false">http://www.tt007.com.cn/?p=758</guid>
		<description><![CDATA[昨天有网友说他的文章太长了，问Wordpress如何实现文章分页，编辑器里没有这个选项，其实Wordpress已经有这个功能了的，只是把该标签隐藏起来了！实现起来很简单，只需两步： 添加wp_link_pages()函数在你所使用主题的single.php中，找到函数： &#60; ?php the_content(); ?&#62; 在其后面加上一下代码即可： &#60; ?php wp_link_pages(array(&#8216;before&#8217; =&#62; &#8216; Pages: &#8216;, &#8216;after&#8217; =&#62; &#8216; &#8216;, &#8216;next_or_number&#8217; =&#62; &#8216;number&#8217;)); ?&#62; 在文章里手动添加nextpage标签和more标签类似，使用nextpage标签需切换到HTML源代码模式编辑文章，在需要分页的地方插入 nextpage 记住，分别在nextpage前后加上“”！ 这样，你的文章就会实现形如“Pages: 1 2”的分页功能了！但是，使用此方法后，静态化和伪静态化的Blog链接样式不太美观，会出现类似“postname.html/2”的样式，如何将其改成更美观的]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/758.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress最近更新得挺快呀！又到2.8.3了</title>
		<link>http://www.xiaoyulog.com/topic/734.html</link>
		<comments>http://www.xiaoyulog.com/topic/734.html#comments</comments>
		<pubDate>Tue, 04 Aug 2009 19:14:22 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[心情]]></category>
		<category><![CDATA[程序源码]]></category>

		<guid isPermaLink="false">http://www.tt007.com.cn/?p=734</guid>
		<description><![CDATA[WordPress 更新真快. 已经更新到2.8.3了。。]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/734.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>彻底解决了更改固定链接造成的遗留问题.再次感叹WP的强大</title>
		<link>http://www.xiaoyulog.com/topic/639.html</link>
		<comments>http://www.xiaoyulog.com/topic/639.html#comments</comments>
		<pubDate>Tue, 07 Jul 2009 01:47:46 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[固定链接]]></category>
		<category><![CDATA[程序源码]]></category>

		<guid isPermaLink="false">http://www.tt007.com.cn/?p=639</guid>
		<description><![CDATA[因为前两天把固定链接由/topic/%post_id% 更改为/topic/%post_id%.html所以导致很多以前的链接无法从百度或者google搜索到了.找了2天.开始一直想用301,但是301大部分的文章都是更换域名的.我光更换固定链接.不过终于让我在今天找到了一个插件PermalinksMigration 一个非常不错的插件。。感谢这么多WP的无私作者。。 嘿嘿 下载的话只要用文章上面的GOOGLE栏把插件名称搜索一下。。 因为用到现在我还是不习惯wordpress的上传 实在太卡了。   不管怎么说 解决了就好。。。 嘿嘿 今天估计IP能翻倍吧]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/639.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.xiaoyulog.com @ 2010-09-10 19:20:44 -->