<?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>Think Bohemian &#187; configuration</title>
	<atom:link href="http://www.thinkbohemian.com/tag/configuration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkbohemian.com</link>
	<description>Secede from Convention in Life and Code</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:13:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pretty Permalinks with Wordpress and Nginx</title>
		<link>http://www.thinkbohemian.com/2010/01/31/pretty-permalinks-with-wordpress-and-nginx/</link>
		<comments>http://www.thinkbohemian.com/2010/01/31/pretty-permalinks-with-wordpress-and-nginx/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 17:31:34 +0000</pubDate>
		<dc:creator>Richard Schneeman</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[systems administration]]></category>
		<category><![CDATA[conf]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thinkbohemian.com/?p=331</guid>
		<description><![CDATA[A permalink is a permanent link to an article or blog entry. Its what you get when a user clicks on the titles of one of your wordpress entries, so if they want to give the link to someone else, the url will always be the same. By default wordpress will make the permalink to [...]]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://en.wikipedia.org/wiki/Permalink">permalink</a> is a permanent link to an article or blog entry. Its what you get when a user clicks on the titles of one of your wordpress entries, so if they want to give the link to someone else, the url will always be the same. By default wordpress will make the permalink to the article the articles ID, so it would look like example.com/?p=123, which isn&#8217;t very descriptive. Instead if you log into your admin panel and select settings and then permalinks you can change the format of your links to something a little more human readable, and much more search friendly such as <a href="http://www.thinkbohemian.com/2010/01/29/national-instruments-extreme-video/">http://www.thinkbohemian.com/2010/01/29/national-instruments-extreme-video/</a> which tells you not only the date it was published but the title too.</p>
<p>You may find after you&#8217;ve changed your permalinks that your articles now all get a 404 error. This is because your server thinks that your looking for a file in the /2010/01/29/national-instruments-extreme-video/ directory. So we need to let our server know not to do that. There are plenty of examples of how to do the re-write if you&#8217;re using <a href="http://maisonbisson.com/blog/post/11617/wordpress-permalinks-mod_rewrite-and-avoiding-404s/">apache</a>, but if you&#8217;re an nginx fanboy like I am, there wasn&#8217;t very much information. So to make this happen we need to add a few extra lines under our nginx.conf under the location / { section like this:</p>
<pre>       location / {
        if (!-e $request_filename) {
            rewrite ^.*$ /index.php last;
         }
        }</pre>
<p>Enjoy the pretty permalinks!!</p>
<p>Update:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkbohemian.com/2010/01/31/pretty-permalinks-with-wordpress-and-nginx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
