<?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>willcodeforcoffee.com &#187; Apache</title>
	<atom:link href="http://willcodeforcoffee.com/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://willcodeforcoffee.com</link>
	<description>The personal programming blog of Eric Hoff.</description>
	<lastBuildDate>Tue, 02 Mar 2010 17:06:24 +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>Apache URL Redirects Using .htaccess</title>
		<link>http://willcodeforcoffee.com/2007/09/04/apache-url-redirects-using-htaccess/</link>
		<comments>http://willcodeforcoffee.com/2007/09/04/apache-url-redirects-using-htaccess/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 21:22:20 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://willcodeforcoffee.com/?p=20</guid>
		<description><![CDATA[I&#8217;ve redirected everything from http://eric.willcodeforcoffee.com to http://willcodeforcoffee.com using Apache redirects. It is pretty simple, I just created a .htaccess file in the web root for eric.willcodeforcoffee.com and added this one line: RedirectMatch permanent ^/$ http://willcodeforcoffee.com/ Now it nicely, and permanently redirects everything from http://eric.willcodeforcoffee.com/. There is one catch however: what about stuff in sub-folders, like [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve redirected everything from http://eric.willcodeforcoffee.com to http://willcodeforcoffee.com using Apache redirects.   It is pretty simple, I just created a .htaccess file in the web root for eric.willcodeforcoffee.com and added this one line:<br />
<code>RedirectMatch permanent ^/$ http://willcodeforcoffee.com/</code></p>
<p>Now it nicely, and permanently redirects everything  from  http://eric.willcodeforcoffee.com/.</p>
<p>There is one catch however: what about stuff in sub-folders, like http://eric.willcodeforcoffee.com/files/?  The above redirect doesn&#8217;t handle that so I also added:<br />
<code>RedirectMatch permanent ^/* http://willcodeforcoffee.com/</code></p>
<p>It doesn&#8217;t redirect to the matching pages, but I don&#8217;t really want to do that anyways.</p>
]]></content:encoded>
			<wfw:commentRss>http://willcodeforcoffee.com/2007/09/04/apache-url-redirects-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
