<?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>Doug Jaworski &#187; Worpress</title>
	<atom:link href="http://www.dougjaworski.com/blog/tag/worpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dougjaworski.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 25 Jul 2010 17:03:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress 2.7 Permalinks Not Working (Solved)</title>
		<link>http://www.dougjaworski.com/blog/wordpress-27-permalinks-not-working-solved/</link>
		<comments>http://www.dougjaworski.com/blog/wordpress-27-permalinks-not-working-solved/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 22:14:46 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Worpress]]></category>

		<guid isPermaLink="false">http://www.dougjaworski.com/blog/?p=22</guid>
		<description><![CDATA[I recently moved to a new Debian Server with Apache 2.x and installed WordPress 2.7.  When I went to change my permalinks, it was not able to configure the permalink feature. I create the appropriate .htaccess file in the root of the WordPress directory but yet it still failed. What I failed to check the .htaccess was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved to a new Debian Server with Apache 2.x and installed WordPress 2.7.  When I went to change my permalinks, it was not able to configure the permalink feature. I create the appropriate .htaccess file in the root of the WordPress directory but yet it still failed. What I failed to check the .htaccess was enabled. Verify that you have .htaccess enabled in apache (Mod Rewrite) and ensure that your server allows you to override the master Apache configuration directives.</p>
<p>To solve this issue, I simply editied at my Virtual Host configuration file and changed it from<br />
<code><br />
&lt;VirtualHost *&gt;<br />
        DocumentRoot /var/www/SiteName/<br />
        &lt;Directory /&gt;<br />
                Options FollowSymLinks<br />
                AllowOverride None<br />
        &lt;/Directory&gt;<br />
        &lt;Directory /var/www/SiteName/&gt;<br />
                Options Indexes FollowSymLinks MultiViews<br />
                AllowOverride <strong>None<br />
</strong>                Order allow,deny<br />
                allow from all<br />
        &lt;/Directory&gt;<br />
</code><br />
To<br />
<code><br />
&lt;VirtualHost *&gt;<br />
        DocumentRoot /var/www/SiteName/<br />
        &lt;Directory /&gt;<br />
                Options FollowSymLinks<br />
                AllowOverride None<br />
        &lt;/Directory&gt;<br />
        &lt;Directory /var/www/SiteName/&gt;<br />
                Options Indexes FollowSymLinks MultiViews<br />
                AllowOverride <strong>FileInfo</strong><br />
                Order allow,deny<br />
                allow from all<br />
        &lt;/Directory&gt;<br />
</code><br />
Simply change None to FileInfo or All. I chose FileInfo as it is a bit more restrictive. I hope this helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dougjaworski.com/blog/wordpress-27-permalinks-not-working-solved/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
