<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Nginx+FastCGI 运行 WordPress 和 WP Super Cache</title>
	<atom:link href="http://www.vpsee.com/2009/06/run-wordpress-wpsupercache-with-nginx-fastcgi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vpsee.com/2009/06/run-wordpress-wpsupercache-with-nginx-fastcgi/</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 12:22:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jaclon</title>
		<link>http://www.vpsee.com/2009/06/run-wordpress-wpsupercache-with-nginx-fastcgi/comment-page-1/#comment-3548</link>
		<dc:creator>jaclon</dc:creator>
		<pubDate>Sat, 29 Jan 2011 14:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.vpsee.com/?p=229#comment-3548</guid>
		<description>不知道使用wordpress_params_supercache效果怎么要，我的博客流量很小</description>
		<content:encoded><![CDATA[<p>不知道使用wordpress_params_supercache效果怎么要，我的博客流量很小</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: littlebat</title>
		<link>http://www.vpsee.com/2009/06/run-wordpress-wpsupercache-with-nginx-fastcgi/comment-page-1/#comment-2853</link>
		<dc:creator>littlebat</dc:creator>
		<pubDate>Fri, 17 Dec 2010 02:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.vpsee.com/?p=229#comment-2853</guid>
		<description>我在做 Nginx + Wordpress + Wp Super Cache 时参考你们的配置文件，有两点疑问：
1、我把配置文件是放在
        location / {
            root   /var/www/blog;
            index  index.php index.html index.htm;
            #Wordpress rewrite
            #if (!-f $request_filename){
            #  rewrite (.*) /index.php;
            #}
            include  wordpress_params_supercache;
            #include  wordpress_params_regular;
        }
的，如果放在location ~ \.php$ {} 中就出错。我发现你们的文章里是放在这个区块的。个人的理解，如果客户端请求如 /test/test1/ 这样的 URL 里面是不包含 php 字样的，它又怎么能被放在这个区块被处理呢？

2、我查了一下网上其它资料，一般的写法是
# all other requests go to WordPress
if (!-e $request_filename) {
rewrite . /index.php last;
}
而不是 rewrite . /var/www/index.php last;
这是没有设置root /var/www; 的写法还是怎么一回事？ 我设置了 root /var/www/blog; 用你们文章中的写法就出错。

VPS 看来不错，以后有 money 了考虑一下 :-)</description>
		<content:encoded><![CDATA[<p>我在做 Nginx + WordPress + Wp Super Cache 时参考你们的配置文件，有两点疑问：<br />
1、我把配置文件是放在<br />
        location / {<br />
            root   /var/www/blog;<br />
            index  index.php index.html index.htm;<br />
            #Wordpress rewrite<br />
            #if (!-f $request_filename){<br />
            #  rewrite (.*) /index.php;<br />
            #}<br />
            include  wordpress_params_supercache;<br />
            #include  wordpress_params_regular;<br />
        }<br />
的，如果放在location ~ \.php$ {} 中就出错。我发现你们的文章里是放在这个区块的。个人的理解，如果客户端请求如 /test/test1/ 这样的 URL 里面是不包含 php 字样的，它又怎么能被放在这个区块被处理呢？</p>
<p>2、我查了一下网上其它资料，一般的写法是<br />
# all other requests go to WordPress<br />
if (!-e $request_filename) {<br />
rewrite . /index.php last;<br />
}<br />
而不是 rewrite . /var/www/index.php last;<br />
这是没有设置root /var/www; 的写法还是怎么一回事？ 我设置了 root /var/www/blog; 用你们文章中的写法就出错。</p>
<p>VPS 看来不错，以后有 money 了考虑一下 :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vpsee</title>
		<link>http://www.vpsee.com/2009/06/run-wordpress-wpsupercache-with-nginx-fastcgi/comment-page-1/#comment-177</link>
		<dc:creator>vpsee</dc:creator>
		<pubDate>Tue, 20 Oct 2009 19:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.vpsee.com/?p=229#comment-177</guid>
		<description>伪静态？不大明白什么意思？你是说把 wordpress 的 php 页面静态化 html 吗？wp super cache 就是干这件事的。</description>
		<content:encoded><![CDATA[<p>伪静态？不大明白什么意思？你是说把 wordpress 的 php 页面静态化 html 吗？wp super cache 就是干这件事的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.vpsee.com/2009/06/run-wordpress-wpsupercache-with-nginx-fastcgi/comment-page-1/#comment-176</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Tue, 20 Oct 2009 17:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.vpsee.com/?p=229#comment-176</guid>
		<description>请问有伪静态的代码吗？</description>
		<content:encoded><![CDATA[<p>请问有伪静态的代码吗？</p>
]]></content:encoded>
	</item>
</channel>
</rss>

