<?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: WordPress NGINX Rewrite Rules	</title>
	<atom:link href="https://www.farinspace.com/wordpress-nginx-rewrite-rules/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/</link>
	<description>Practical Real World Web Development</description>
	<lastBuildDate>Tue, 01 Dec 2015 23:21:07 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
	<item>
		<title>
		By: denellum		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-37570</link>

		<dc:creator><![CDATA[denellum]]></dc:creator>
		<pubDate>Thu, 28 Aug 2014 07:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-37570</guid>

					<description><![CDATA[Been beating my head against the wall ALL day trying to figure out how to clean up the URLS with nginx. Thank you so so so much for this :)]]></description>
			<content:encoded><![CDATA[<p>Been beating my head against the wall ALL day trying to figure out how to clean up the URLS with nginx. Thank you so so so much for this 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Adrian		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-36235</link>

		<dc:creator><![CDATA[Adrian]]></dc:creator>
		<pubDate>Fri, 25 Oct 2013 18:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-36235</guid>

					<description><![CDATA[Thanks for the post!

I set up a virtual host so that www.domain.com is rewritten to domain.com, that way the IF statement in the article is not needed.

Here is my complete virtual host file (rewrites www.domain.com to domain.com and has pretty URL&#039;s enabled):

http://pastebin.com/v38KG0Mx

Please note that I am using a PHP port instead of a socket.]]></description>
			<content:encoded><![CDATA[<p>Thanks for the post!</p>
<p>I set up a virtual host so that <a href="http://www.domain.com" rel="nofollow ugc">http://www.domain.com</a> is rewritten to domain.com, that way the IF statement in the article is not needed.</p>
<p>Here is my complete virtual host file (rewrites <a href="http://www.domain.com" rel="nofollow ugc">http://www.domain.com</a> to domain.com and has pretty URL&#8217;s enabled):</p>
<p><a href="http://pastebin.com/v38KG0Mx" rel="nofollow ugc">http://pastebin.com/v38KG0Mx</a></p>
<p>Please note that I am using a PHP port instead of a socket.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John Wheal		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-29262</link>

		<dc:creator><![CDATA[John Wheal]]></dc:creator>
		<pubDate>Fri, 12 Apr 2013 23:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-29262</guid>

					<description><![CDATA[Thanks for this post. I&#039;m trying to automate this rewrite tool to work with ispconfig.]]></description>
			<content:encoded><![CDATA[<p>Thanks for this post. I&#8217;m trying to automate this rewrite tool to work with ispconfig.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: dydyt		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-25337</link>

		<dc:creator><![CDATA[dydyt]]></dc:creator>
		<pubDate>Wed, 03 Oct 2012 22:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-25337</guid>

					<description><![CDATA[WORKS! Thank You :)]]></description>
			<content:encoded><![CDATA[<p>WORKS! Thank You 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Al Jachimiak		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-24346</link>

		<dc:creator><![CDATA[Al Jachimiak]]></dc:creator>
		<pubDate>Sun, 15 Jul 2012 01:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-24346</guid>

					<description><![CDATA[Awesome post!  

I just put together an ubuntu server with Nginx and I could figure out what the issue was.

Thanks!]]></description>
			<content:encoded><![CDATA[<p>Awesome post!  </p>
<p>I just put together an ubuntu server with Nginx and I could figure out what the issue was.</p>
<p>Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: RavanH		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-24253</link>

		<dc:creator><![CDATA[RavanH]]></dc:creator>
		<pubDate>Sat, 07 Jul 2012 15:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-24253</guid>

					<description><![CDATA[Hi,

I found that the rule
&lt;code&gt;rewrite ^(.+)$ /index.php?q=$1 last;&lt;code&gt;
adds a &#039;q&#039; request parameter behind the scenes and although invisible for visitors browsing the site, it is seen by WP Super Cache in PHP mode. This results in no pages are handled by Super Cache because all requests with a GET parameter are being passed to WP Cache instead. Except the home page, that is...

Instead, the rule
&lt;code&gt;rewrite ^(.+)$ /index.php last;&lt;code&gt;
seems to work equally well for WordPress and makes WP Super Cache behave nice on all posts and pages too :)]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I found that the rule<br />
<code>rewrite ^(.+)$ /index.php?q=$1 last;</code><code><br />
adds a 'q' request parameter behind the scenes and although invisible for visitors browsing the site, it is seen by WP Super Cache in PHP mode. This results in no pages are handled by Super Cache because all requests with a GET parameter are being passed to WP Cache instead. Except the home page, that is...</p>
<p>Instead, the rule<br />
</code><code>rewrite ^(.+)$ /index.php last;</code><code><br />
seems to work equally well for WordPress and makes WP Super Cache behave nice on all posts and pages too :)</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: chrismccoy		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-21864</link>

		<dc:creator><![CDATA[chrismccoy]]></dc:creator>
		<pubDate>Thu, 23 Feb 2012 14:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-21864</guid>

					<description><![CDATA[you mind posting your nginx.conf?

im having issues getting mine working]]></description>
			<content:encoded><![CDATA[<p>you mind posting your nginx.conf?</p>
<p>im having issues getting mine working</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dhruv		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-17478</link>

		<dc:creator><![CDATA[Dhruv]]></dc:creator>
		<pubDate>Thu, 25 Aug 2011 14:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-17478</guid>

					<description><![CDATA[I managed to sort it out after tweaking a few settings. :) My config is available &lt;a href=&quot;http://pastebin.com/wpBCZKKm&quot; rel=&quot;nofollow&quot;&gt;here.&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p>I managed to sort it out after tweaking a few settings. 🙂 My config is available <a href="http://pastebin.com/wpBCZKKm" rel="nofollow">here.</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dhruv		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-17474</link>

		<dc:creator><![CDATA[Dhruv]]></dc:creator>
		<pubDate>Thu, 25 Aug 2011 10:30:13 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-17474</guid>

					<description><![CDATA[Hey Dimas,

Any tips on combining Wordpress &lt;em&gt;AND&lt;/em&gt; CodeIgniter? I am running a WP install in the root folder (with this config, a modified version of the Roots WP Theme config: &lt;a href=&quot;http://pastebin.com/Xbi7XHLv&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;). However, I&#039;m also trying to migrate a CI app into a /subdirectory/ on my site. I&#039;ve managed to get the default controller to show (without the index.php), but any other controllers or methods simply break and show my WP 404 page! HIstorically, the CI app used to run on an Apache server with pretty URL&#039;s just fine.

Any help is appreciated :D]]></description>
			<content:encoded><![CDATA[<p>Hey Dimas,</p>
<p>Any tips on combining WordPress <em>AND</em> CodeIgniter? I am running a WP install in the root folder (with this config, a modified version of the Roots WP Theme config: <a href="http://pastebin.com/Xbi7XHLv" rel="nofollow">here</a>). However, I&#8217;m also trying to migrate a CI app into a /subdirectory/ on my site. I&#8217;ve managed to get the default controller to show (without the index.php), but any other controllers or methods simply break and show my WP 404 page! HIstorically, the CI app used to run on an Apache server with pretty URL&#8217;s just fine.</p>
<p>Any help is appreciated 😀</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ovidiu		</title>
		<link>https://www.farinspace.com/wordpress-nginx-rewrite-rules/#comment-17162</link>

		<dc:creator><![CDATA[Ovidiu]]></dc:creator>
		<pubDate>Mon, 25 Jul 2011 07:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1088#comment-17162</guid>

					<description><![CDATA[@Fadlee: thanks, worked perfectly :-)]]></description>
			<content:encoded><![CDATA[<p>@Fadlee: thanks, worked perfectly 🙂</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
