<?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>Bytearray - Programming, Computers and Technology &#187; apache.conf</title>
	<atom:link href="http://bytearray.brixtonjunkies.com/tag/apache-conf/feed/" rel="self" type="application/rss+xml" />
	<link>http://bytearray.brixtonjunkies.com</link>
	<description></description>
	<lastBuildDate>Tue, 03 Nov 2009 11:52:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress Permalinks Apache Setup</title>
		<link>http://bytearray.brixtonjunkies.com/2009/08/19/wordpress-permalinks-apache-setup/</link>
		<comments>http://bytearray.brixtonjunkies.com/2009/08/19/wordpress-permalinks-apache-setup/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 17:13:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache.conf]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bytearray.brixtonjunkies.com/?p=31</guid>
		<description><![CDATA[Thought I’d includes some instructions for setting up “WordPress Permalinks” (which don’t work by default) which means you can get rid of those ugly Wordpress URI’s and replace them with something more human readable.
Assuming you have inserted the runtime mod_rewrite DSO or complied Apache with —enable-rewrite then in order to get Wordpress permalinks to function [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I’d includes some instructions for setting up “WordPress Permalinks” (which don’t work by default) which means you can get rid of those ugly Wordpress URI’s and replace them with something more human readable.</p>
<p>Assuming you have inserted the runtime mod_rewrite DSO or complied Apache with —enable-rewrite then in order to get Wordpress permalinks to function you need to include the following in your Apache config file (httpd.conf):</p>
<p>The quoted block below needs to go inside your virtual host section for your Wordpress installation. Once Apache has been restarted your permalinks menu inside “Wordpress Admin” can be used and now your new URL’s should be functional.</p>
<pre class="brush: xml;">
&lt;Directory /www/mywordpress/&gt;
  RewriteEngine On
  RewriteBase /www/mywordpress/
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.php [L]
&lt;/Directory&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bytearray.brixtonjunkies.com/2009/08/19/wordpress-permalinks-apache-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
