<?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>david winter &#187; wordpress</title>
	<atom:link href="http://davidwinter.me.uk/articles/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidwinter.me.uk</link>
	<description>you were expecting someone else?</description>
	<lastBuildDate>Mon, 28 Jun 2010 20:37:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>mod_rewrite and Mac OS X Personal Web Sharing</title>
		<link>http://davidwinter.me.uk/articles/2007/05/20/mod_rewrite-and-mac-os-x-personal-web-sharing/</link>
		<comments>http://davidwinter.me.uk/articles/2007/05/20/mod_rewrite-and-mac-os-x-personal-web-sharing/#comments</comments>
		<pubDate>Sun, 20 May 2007 15:24:10 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://davidwinter.me.uk/articles/2007/05/20/mod_rewrite-and-mac-os-x-personal-web-sharing/</guid>
		<description><![CDATA[It was very frustrating installing a fresh WordPress on my Mac and finding that the permalinks didn&#8217;t work. Turns out the default Apache settings for personal web sharing on OS X disable .htaccess overriding. sudo mate /etc/httpd/users/yourusername.conf Now you&#8217;ll want to enable Apache to follow symbolic links: Options Indexes MultiViews FollowSymLinks And to allow .htaccess [...]]]></description>
			<content:encoded><![CDATA[<p>It was very frustrating installing a fresh <a href="http://www.wordpress.org">WordPress</a> on my Mac and finding that the permalinks didn&#8217;t work. Turns out the default Apache settings for personal web sharing on OS X disable <code>.htaccess</code> overriding.</p>

<pre><code>sudo mate /etc/httpd/users/yourusername.conf
</code></pre>

<p>Now you&#8217;ll want to enable Apache to follow symbolic links:</p>

<pre><code>Options Indexes MultiViews FollowSymLinks
</code></pre>

<p>And to allow <code>.htaccess</code> overriding:</p>

<pre><code>AllowOverride All
</code></pre>

<p>The file should then look like:</p>

<pre><code>&lt;Directory "/Users/yourusername/Sites/"&gt;
    Options Indexes MultiViews FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
&lt;/Directory&gt;
</code></pre>

<p>Now in System Preferences, stop and start &#8216;Personal Web Sharing&#8217;. Things should work perfectly now.</p>
]]></content:encoded>
			<wfw:commentRss>http://davidwinter.me.uk/articles/2007/05/20/mod_rewrite-and-mac-os-x-personal-web-sharing/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
