<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>htaccess mod rewrite, htaccess rewrite</title>
	<atom:link href="http://htaccessrewrite.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://htaccessrewrite.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 18 Mar 2010 15:12:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='htaccessrewrite.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>htaccess mod rewrite, htaccess rewrite</title>
		<link>http://htaccessrewrite.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://htaccessrewrite.wordpress.com/osd.xml" title="htaccess mod rewrite, htaccess rewrite" />
	<atom:link rel='hub' href='http://htaccessrewrite.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Never Cache a File, Using Htaccess Rewrites to show 10 alternate Versions</title>
		<link>http://htaccessrewrite.wordpress.com/2010/03/18/never-cache-a-file-using-htaccess-rewrites-to-show-10-alternate-versions/</link>
		<comments>http://htaccessrewrite.wordpress.com/2010/03/18/never-cache-a-file-using-htaccess-rewrites-to-show-10-alternate-versions/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 15:12:31 +0000</pubDate>
		<dc:creator>askapache</dc:creator>
				<category><![CDATA[htaccess rewrite]]></category>
		<category><![CDATA[Askapache]]></category>
		<category><![CDATA[Cache-Control]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[Headers]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[RewriteRule]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=21</guid>
		<description><![CDATA[<p>Awesome!  You can read the full article here: <a href="http://www.askapache.com/htaccess/pimp-out-your-feedburner-count.html"><img src="http://uploads.askapache.com/2007/10/flamocon.gif" />Rewriting Feedburner Counter, Cache, and more with htaccess rewrite.</a>.</p>
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=21&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Say you have 10 different versions of the same image, like your feedburner count.   Here is some sweet htaccess rewriterules and caching directives you can use to show a different version based on the time. </p>
<pre>RewriteEngine On
RewriteBase /

RewriteCond %{TIME_SEC} ^.([0-9]) [NC]
RewriteRule ^feed\.gif$ /feed%1.gif [NC,L]

RewriteEngine On
RewriteBase /
RewriteRule !\.gif - [S=4]

RewriteCond %{TIME_SEC} ^(0|4|8|12|16|22|26|30|34|38|42|46|50|54|58)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^feed\.gif$ /zi/feed1.gif [S=3]

RewriteCond %{TIME_SEC} ^(1|5|9|13|17|23|27|31|35|39|43|47|51|55|59)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^feed\.gif$ /zi/feed2.gif [S=2]

RewriteCond %{TIME_SEC} ^(2|6|10|14|18|24|28|32|36|40|44|48|52|56|60)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^feed\.gif$ /zi/feed3.gif [S=1]

RewriteCond %{TIME_SEC} ^(3|7|11|15|19|25|29|33|37|41|45|49|53|57)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^feed\.gif$ /zi/feed4.gif
</pre>
<blockquote cite="http://www.askapache.com/htaccess/pimp-out-your-feedburner-count.html"><p>In order for the image to be reloaded on each page-view of the site, I set up some anti-caching headers in my .htaccess file.  First I unset the far-future Expires headers that I normally send with images, and then I instruct browsers to check the image every request to see if it has been modified.</p></blockquote>
<pre>
Header unset Expires
Header unset Last-Modified
FileETag None
Header set Cache-Control "no-cache, must-revalidate"
</pre>
<p>Awesome!  You can read the full article here: <a href="http://www.askapache.com/htaccess/pimp-out-your-feedburner-count.html"><img src="http://uploads.askapache.com/2007/10/flamocon.gif" />Rewriting Feedburner Counter, Cache, and more with htaccess rewrite.</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=21&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2010/03/18/never-cache-a-file-using-htaccess-rewrites-to-show-10-alternate-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b19170af73f1c1a6ab1f4be91530bbb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">AskApache</media:title>
		</media:content>

		<media:content url="http://uploads.askapache.com/2007/10/flamocon.gif" medium="image" />
	</item>
		<item>
		<title>Redirecting subdomains to directories with vhost.conf</title>
		<link>http://htaccessrewrite.wordpress.com/2009/03/30/redirecting-subdomains-to-directories-with-vhostconf/</link>
		<comments>http://htaccessrewrite.wordpress.com/2009/03/30/redirecting-subdomains-to-directories-with-vhostconf/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 01:38:48 +0000</pubDate>
		<dc:creator>askapache</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.htaccess dynamic directories]]></category>
		<category><![CDATA[.htaccess mod_rewrite rules]]></category>
		<category><![CDATA[.htaccess php require]]></category>
		<category><![CDATA[.htaccess php.ini]]></category>
		<category><![CDATA[how much does mod rewrite]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[vhost.conf]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=16</guid>
		<description><![CDATA[For full article see: Redirecting subdomains to directories in apache. Note: It is likely you will need root access to carry out apache config alterations If you want to be able to redirect blah.domain.com to domain.com/blah/ so that blah.domain.com is shown in the address bar here’s a quick and dirty how to: First off if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=16&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="perma">For full article see: <a href="http://muffinresearch.co.uk/archives/2006/08/20/redirecting-subdomains-to-directories-in-apache/">Redirecting subdomains to directories in apache.</a></span><a href="http://muffinresearch.co.uk/archives/2006/08/20/redirecting-subdomains-to-directories-in-apache/"> </a><a id="comm" href="http://muffinresearch.co.uk/archives/2006/08/20/redirecting-subdomains-to-directories-in-apache/#comments"></a></p>
<h2></h2>
<p class="update">Note: It is likely you will need root access to carry out apache config alterations</p>
<p>If you want to be able to redirect blah.domain.com to domain.com/blah/ so that blah.domain.com is shown in the address bar here’s a quick and dirty how to:</p>
<p>First off if you want any subdomain to be able to be redirected first you need to set-up your DNS correctly. In my case this was as simple as going to the people that host my domain and adding an A record with the wildcard * that pointed to my server’s ip address. Bear in mind your DNS settings may take a while to work so be patient. Before you proceed you should check that anything.domain.com resolves to the ip address of your server. You can check this by running:</p>
<pre><code>ping iloveapache.domain.com</code></pre>
<p>This should respond with something like this:</p>
<pre><code>[root@cheekymonkey conf]# ping iloveapache.domain.com
PING iloveapache.domain.com (62.193.xxx.xxx) 56(84) bytes of data.
64 bytes from my.serverhostame.com (62.193.xxx.xxx): icmp_seq=0 ttl=64 time=0.058 ms
64 bytes from my.serverhostame.com (62.193.xxx.xxx): icmp_seq=1 ttl=64 time=0.040 ms
64 bytes from my.serverhostame.com (62.193.xxx.xxx): icmp_seq=2 ttl=64 time=0.071 ms
64 bytes from my.serverhostame.com (62.193.xxx.xxx): icmp_seq=3 ttl=64 time=0.028 ms</code></pre>
<p>The next step is to set-up the virtual host to respond to the wildcard subdomains. In the case of plesk you have to set-up a vhost.conf file but on any other apache installation you can just edit httpd.conf and look for the &lt;VirtualHost&gt; that corresponds to your site. If you are using Plesk you will need to ssh in to your server and create a vhost.conf file if it doesn’t already exist here where &lt;domain.com&gt; is your domain:</p>
<pre><code>/var/www/vhosts/&lt;domain.com&gt;/conf/vhost.conf</code></pre>
<p>Open that file with the command line editor of your choice and add the following directives:</p>
<pre><code>ServerAlias *.domain.com
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.* [NC]
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com
RewriteCond /var/www/vhosts/domain.com/httpdocs/%1 -d
RewriteRule ^(.*) /%1/$1 [L]</code></pre>
<p>Substitute domain.com for your domain. Now here’s a quick walkthrough how these rules work. The first line <code>ServerAlias *.domain.com</code> tells apache to accept anysubdomain.domain.com.</p>
<p>Next the rewrite rules work as follows:</p>
<ol>
<li>The first line of mod_rewrite <code>!^www.*</code> only matches urls that don’t begin with www. You don’t want to redirect www.domain.com to www.domain.com/www/ do you? <em>Note: you could add additional lines like these to prevent re-writing other subdomains like secure.domain.com if that should not be redirected to domain.com/secure/</em></li>
<li>The second line <code>^([^\.]+)\.*$</code> captures into a backreference anything that doesn’t have a period e.g. the subdomain. The plus makes sure that there is at least one character that matches.</li>
<li>The next condition checked is that  the directory captured into the backreference does actually exist hence the -d.</li>
<li>This last line <code>^(.*) /%1/$1 [L]</code> takes the requested path and dumps it into a back reference and then rewrites it to point to the a directory (the subdomain backreference captured in the Rewrite conditions above) . In other words %1 is the subdomain backreference and $1 is the path backreference (that captured by .*). The important thing to rember is you can refer to backreferences in rewriteCond lines with % and backreferences in rewriteRules with $. Lastly the [L] (last) means doen’t further rewrite this URL. <em>Note: You might want to leave this out if you are doing any subsequent rewrites, be sure to test what you have set-up thoroughly!!!</em></li>
</ol>
<p>Now once you have made those changes if you are running plesk you will need to apply your vhost.conf changes with the following command:</p>
<pre><code>/usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=&lt;domain.com&gt;</code></pre>
<p>And then whether are using Plesk or not you need to restart apache e.g:</p>
<pre><code>service httpd restart</code></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=16&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2009/03/30/redirecting-subdomains-to-directories-with-vhostconf/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b19170af73f1c1a6ab1f4be91530bbb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">AskApache</media:title>
		</media:content>
	</item>
		<item>
		<title>Running CherryPy behind Apache</title>
		<link>http://htaccessrewrite.wordpress.com/2008/10/26/running-cherrypy-behind-apache/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/10/26/running-cherrypy-behind-apache/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 02:02:01 +0000</pubDate>
		<dc:creator>askapache</dc:creator>
				<category><![CDATA[cherrypy]]></category>
		<category><![CDATA[htaccess rewrite]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[modrewrite]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=13</guid>
		<description><![CDATA[This is a high-level discussion of the various ways to use CherryPy behind Apache. Individual CherryPy HOWTO&#8217;s are at: ModRewrite ModProxy FastCGIWSGI ScgiWsgi &#62;ModPython (offical docs) When should you run your CherryPy app behind Apache? The CherryPy HTTP server (before CherryPy 3.0.0 beta) doesn&#8217;t support SSL out of the box (although there is a &#62;third-party [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=13&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a high-level discussion of the various ways to use <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> behind Apache. Individual CherryPy HOWTO&#8217;s are at: </p>
<ul>
<li><a href="http://tools.cherrypy.org/wiki/ModRewrite">ModRewrite</a> </li>
<li><a href="http://tools.cherrypy.org/wiki/ModProxy">ModProxy</a> </li>
<li><a href="http://tools.cherrypy.org/wiki/FastCGIWSGI">FastCGIWSGI</a> </li>
<li><a href="http://tools.cherrypy.org/wiki/ScgiWsgi">ScgiWsgi</a> </li>
<li><a href="http://cherrypy.org/wiki/ModPython">&gt;ModPython</a> (offical docs) </li>
</ul>
<h2>When should you run your <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> app behind Apache?</h2>
<p> The <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> HTTP server (before <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> 3.0.0 beta) doesn&#8217;t support SSL out of the box (although there is a <a href="http://cherrypy.org/wiki/SslCherry">&gt;third-party module</a> for it). So, if you have a simple website that doesn&#8217;t have a really high traffic website (say, less than 50 hits/second) and if you don&#8217;t need SSL, then running <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> exposed is fine. Otherwise, running it behind Apache is probably the right option for you. </p>
<h2>What are the advantages?</h2>
<ul>
<li>You can configure Apache to serve static files directly (and free <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> from doing this) </li>
<li>You have access to all the mod_* modules from Apache. For instance:
<ul>
<li>mod_ssl so Apache can handle SSL for you and <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> doesn&#8217;t have to know about this (recipe <a href="http://tools.cherrypy.org/wiki/ApacheSSL">here</a>). </li>
<li>mod_gzip if you want Apache to compress your pages instead of <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> (Apache is probably a bit faster at this) </li>
<li>VirtualHosting/mod_rewrite/mod_proxy if you want to mix &amp; match multiple sites. They can be served from the same <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> server or from multiple ones. </li>
<li>all other mod_* modules &#8230; </li>
</ul>
</li>
</ul>
<h2>Are there any drawbacks?</h2>
<p> I&#8217;ve been using this setup for many production websites for almost 4 years, some of them on Windows and some of them on Linux and quite frankly, I don&#8217;t think there are any drawbacks. The only minor thing that I can think of is that you have to install Apache and learn how to configure it. But it is not very hard and it is worth it because Apache is truly a great webserver and you can take advantage of its numerous features. </p>
<h2>Comparing the various methods</h2>
<p> IMHO, the best way to do this is to use <a href="http://httpd.apache.org/docs/mod/mod_rewrite.html">mod_rewrite</a>. I&#8217;ve tried FastCGI and the performance is about the same but it is more complex to setup. </p>
<table class="wiki">
<tbody>
<tr>
<td></td>
<td>mod_rewrite</td>
<td>mod_proxy</td>
<td>mod_python</td>
<td>FastCGI</td>
<td> SCGI </td>
</tr>
<tr>
<td> interface to <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> </td>
<td> socket </td>
<td> socket </td>
<td>in-process</td>
<td>socket </td>
<td>socket </td>
</tr>
<tr>
<td> works with <a href="http://www.askapache.com/htaccess/htaccess-fresh.html">.htaccess</a> </td>
<td> Y </td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<h2>Getting the right Host header in <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy&lt;/a</h2>
<p> One problem with this setup is that requests that arrive to CherryPy will look like they&#8217;re coming from &quot;localhost&quot; (the &quot;Host&quot; header will say &quot;localhost:port). </p>
<p> This is not a problem if you&#8217;re only using relative or absolute URLs (the browser will do the right thing), but this is a problem if you&#8217;re using canonical URLs (URLs that include the protocol and domain name) generated by CherryPy. This is also a problem if you want to issue a redirect because a redirect should include a canonical URL. </p>
<p> This is an especially important issue because <a href="http://tools.cherrypy.org/wiki/CherryPy">CherryPy</a> will create redirects for you in cases where the url is missing a final &#8216;/&#8217;. Redirecting users to <tt>http://127.0.0.1:8080/data/</tt> when they typed in <tt>http://www.example.info/data</tt> is not likely to win you many friends. </p>
<p> If you are using <strong>Apache 2.0</strong> and have control of your configuration, the easiest solution is to add the following in your (virtual) server&#8217;s conf file: </p>
<pre class="wiki">ProxyPreserveHost on
</pre>
<p> If you also want <strong>newer Apache 1.x</strong> compatibility (works for 1.3.33) or you can&#8217;t edit the Apache config file, the proxy tool will automatically use the <strong>X-Forwarded-Host</strong> header provided by Apache. </p>
<pre class="wiki">[/]
tools.proxy.on: True
</pre>
<p> For <strong>earlier Apache 1.x installations</strong>, you need to explicitly set the <tt>proxy.base</tt>, which tells CherryPy to use a different &quot;Host&quot; header than the one coming from the request: </p>
<pre class="wiki">
[/]
tools.proxy.on: True
tools.proxy.base: 'http://mydomain.com'
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=13&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/10/26/running-cherrypy-behind-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b19170af73f1c1a6ab1f4be91530bbb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">AskApache</media:title>
		</media:content>
	</item>
		<item>
		<title>HTTP STATUS CODES</title>
		<link>http://htaccessrewrite.wordpress.com/2008/09/12/http-status-codes/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/09/12/http-status-codes/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 21:30:11 +0000</pubDate>
		<dc:creator>askapache</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[http status codes]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=10</guid>
		<description><![CDATA[57 APACHE HTTP STATUS RESPONSE CODES Code Message 100 Continue 101 Switching Protocols 102 Processing 200 OK 201 Created 202 Accepted 203 Non-Authoritative Information 204 No Content 205 Reset Content 206 Partial Content 207 Multi-Status 300 Multiple Choices 301 Moved Permanently 302 Found 303 See Other 304 Not Modified 305 Use Proxy 306 unused 307 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=10&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><a name="apache-response-codes-57" href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#apache-response-codes-57">57 APACHE HTTP STATUS RESPONSE  CODES</a></h2>
<table border="0" width="100%">
<thead>
<tr>
<td>Code</td>
<td>Message</td>
<td></td>
</tr>
</thead>
<tbody>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-100">100</a></td>
<td>Continue</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-101">101</a></td>
<td>Switching Protocols</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-102">102</a></td>
<td>Processing</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-200">200</a></td>
<td>OK</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-201">201</a></td>
<td>Created</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-202">202</a></td>
<td>Accepted</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-203">203</a></td>
<td>Non-Authoritative Information</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-204">204</a></td>
<td>No Content</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-205">205</a></td>
<td>Reset Content</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-206">206</a></td>
<td>Partial Content</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-207">207</a></td>
<td>Multi-Status</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-300">300</a></td>
<td>Multiple Choices</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-301">301</a></td>
<td>Moved Permanently</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-302">302</a></td>
<td>Found</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-303">303</a></td>
<td>See Other</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-304">304</a></td>
<td>Not Modified</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-305">305</a></td>
<td>Use Proxy</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-306">306</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-307">307</a></td>
<td>Temporary Redirect</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-400">400</a></td>
<td>Bad Request</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-401">401</a></td>
<td>Authorization Required</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-402">402</a></td>
<td>Payment Required</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-403">403</a></td>
<td>Forbidden</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-404">404</a></td>
<td>Not Found</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-405">405</a></td>
<td>Method Not Allowed</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-406">406</a></td>
<td>Not Acceptable</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-407">407</a></td>
<td>Proxy Authentication Required</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-408">408</a></td>
<td>Request Time-out</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-409">409</a></td>
<td>Conflict</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-410">410</a></td>
<td>Gone</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-411">411</a></td>
<td>Length Required</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-412">412</a></td>
<td>Precondition Failed</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-413">413</a></td>
<td>Request Entity Too Large</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-414">414</a></td>
<td>Request-URI Too Large</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-415">415</a></td>
<td>Unsupported Media Type</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-416">416</a></td>
<td>Requested Range Not Satisfiable</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-417">417</a></td>
<td>Expectation Failed</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-418">418</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-419">419</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-420">420</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-421">421</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-422">422</a></td>
<td>Unprocessable Entity</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-423">423</a></td>
<td>Locked</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-424">424</a></td>
<td>Failed Dependency</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-425">425</a></td>
<td>No code</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-426">426</a></td>
<td>Upgrade Required</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-500">500</a></td>
<td>Internal Server Error</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-501">501</a></td>
<td>Method Not Implemented</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-502">502</a></td>
<td>Bad Gateway</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-503">503</a></td>
<td>Service Temporarily Unavailable</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-504">504</a></td>
<td>Gateway Time-out</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-505">505</a></td>
<td>HTTP Version Not Supported</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-506">506</a></td>
<td>Variant Also Negotiates</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-507">507</a></td>
<td>Insufficient Storage</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-508">508</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-509">509</a></td>
<td>unused</td>
<td></td>
</tr>
<tr>
<td><a href="http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html#status-510">510</a></td>
<td>Not Extended</td>
</tr>
</tbody>
</table>
<p>
Source: <a href="http://groups.google.com/group/apachehtaccess/web/http-status-codes">HTTP Status Codes</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htaccessrewrite.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htaccessrewrite.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=10&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/09/12/http-status-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b19170af73f1c1a6ab1f4be91530bbb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">AskApache</media:title>
		</media:content>
	</item>
		<item>
		<title>Measure script execution time in stages</title>
		<link>http://htaccessrewrite.wordpress.com/2008/07/17/measure-script-execution-time-in-stages/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/07/17/measure-script-execution-time-in-stages/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 05:46:54 +0000</pubDate>
		<dc:creator>askapache</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[optimizing code]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=8</guid>
		<description><![CDATA[Measure script execution time in stages We can use milestones in a script to track how certain sections of code are performing. The best way to achieve this is a simple function with some static variable inside. However, needs can quickly get complicated, so I built a simple static class to handle everything. Include this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=8&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Measure script execution time in stages</h3>
<p>We can use milestones in a script to track how certain sections of code are performing. The best way to achieve this is a simple function with some static variable inside. However, needs can quickly get complicated, so I built a simple static class to handle everything. Include this class in your application:</p>
<pre>&lt;?php
class ScriptTimer {
  static $milestones;
  function microtime_float() {
    list($utime, $time) = explode(" ", microtime());
    return ((float)$utime + (float)$time);
  }
  function timing_milestone($name) {
    self::$milestones[] = array($name, self::microtime_float());
  }
  function dump_profile($return = false) {
    self::$milestones[] = array('finish', self::microtime_float());
    $output = '&lt;table border="1"&gt;'.
              '&lt;tr&gt;&lt;th&gt;Milestone&lt;/th&gt;&lt;th&gt;Diff&lt;/th&gt;&lt;th&gt;Cumulative&lt;/th&gt;&lt;/tr&gt;';
    foreach (self::$milestones as $elem =&gt; $data) {
      $output .= '&lt;tr&gt;&lt;td&gt;'.$data[0].'&lt;/td&gt;'.
        '&lt;td&gt;'.round(($elem ? $data[1] - self::$milestones[$elem - 1][1]: '0'), 5).'&lt;/td&gt;'.
        '&lt;td&gt;'.round(($data[1] - self::$milestones[0][1]), 5).'&lt;/td&gt;&lt;/tr&gt;';
    }
    $output .= '&lt;/table&gt;';
    if ($return) return $output;
    echo $output;
  }
}</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htaccessrewrite.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htaccessrewrite.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=8&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/07/17/measure-script-execution-time-in-stages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b19170af73f1c1a6ab1f4be91530bbb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">AskApache</media:title>
		</media:content>
	</item>
		<item>
		<title>htaccess rewrite code explanation</title>
		<link>http://htaccessrewrite.wordpress.com/2008/06/02/htaccess-rewrite-code-explanation/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/06/02/htaccess-rewrite-code-explanation/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 04:45:53 +0000</pubDate>
		<dc:creator>wordpress htaccess</dc:creator>
				<category><![CDATA[htaccess rewrite]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[.htaccess dynamic directories]]></category>
		<category><![CDATA[.htaccess mod_rewrite rules]]></category>
		<category><![CDATA[.htaccess php require]]></category>
		<category><![CDATA[.htaccess php.ini]]></category>
		<category><![CDATA[.htaccess redirect post variables]]></category>
		<category><![CDATA[.htaccess rewrite mask external link]]></category>
		<category><![CDATA[.htaccess rewrite rule]]></category>
		<category><![CDATA[500 error writable by group]]></category>
		<category><![CDATA[bbcode]]></category>
		<category><![CDATA[bbcode to html php script]]></category>
		<category><![CDATA[comment out htaccess]]></category>
		<category><![CDATA[convert unix timestamp into date php]]></category>
		<category><![CDATA[debugging htaccess redirect]]></category>
		<category><![CDATA[edit htaccess with php]]></category>
		<category><![CDATA[filter traffic by language .htaccess]]></category>
		<category><![CDATA[hack htacess to hide index.php]]></category>
		<category><![CDATA[hacking htaccess]]></category>
		<category><![CDATA[hotlink code]]></category>
		<category><![CDATA[how much does mod rewrite]]></category>
		<category><![CDATA[how to get a new ip address]]></category>
		<category><![CDATA[how to get my ip address if it changes]]></category>
		<category><![CDATA[how to use htaccess rewriteengine]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[htaccess allow indexes]]></category>
		<category><![CDATA[htaccess auto_prepend_file]]></category>
		<category><![CDATA[htaccess hide url]]></category>
		<category><![CDATA[htaccess mod rewrite]]></category>
		<category><![CDATA[htaccess mod rewrite error page]]></category>
		<category><![CDATA[htaccess php include]]></category>
		<category><![CDATA[htaccess rewrite explained]]></category>
		<category><![CDATA[htaccess rewrite rule options]]></category>
		<category><![CDATA[htaccess rewrite url]]></category>
		<category><![CDATA[htaccess rewritecond .php]]></category>
		<category><![CDATA[htaccess rewriterule]]></category>
		<category><![CDATA[htaccess tips]]></category>
		<category><![CDATA[htaccess tips tricks]]></category>
		<category><![CDATA[htaccess url]]></category>
		<category><![CDATA[index.html before index.php .htaccess]]></category>
		<category><![CDATA[is .htaccess working]]></category>
		<category><![CDATA[mac os x show file names .htaccess]]></category>
		<category><![CDATA[mod rewrite htaccess]]></category>
		<category><![CDATA[mod rewrite php to htm]]></category>
		<category><![CDATA[mod_rewrite won't do anything in http.conf]]></category>
		<category><![CDATA[php get ip address of current computer command line]]></category>
		<category><![CDATA[php synchronize files]]></category>
		<category><![CDATA[php to .html with htaccess]]></category>
		<category><![CDATA[php url rewrite]]></category>
		<category><![CDATA[redirect subfolder to root]]></category>
		<category><![CDATA[redirecting 404 mod_rewrite]]></category>
		<category><![CDATA[rewrite direct index link htaccess]]></category>
		<category><![CDATA[rewrite dynamic urls to flat]]></category>
		<category><![CDATA[rewrite htaccess]]></category>
		<category><![CDATA[rewrite url .htaccess]]></category>
		<category><![CDATA[rewriterule htaccess]]></category>
		<category><![CDATA[short url + htaccess]]></category>
		<category><![CDATA[static ip address]]></category>
		<category><![CDATA[thanks for your purchase]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=7</guid>
		<description><![CDATA[I have a wordpress blog installed in root (htdocs). Wp has kindly modified the .htaccess file to include
# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]


# END WordPress<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=7&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="post_message_455766">
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">I have a wordpress blog installed in root (htdocs). Wp has kindly modified the .htaccess file to include<br />
# BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
&lt;/IfModule&gt;</p>
<p># END WordPress</p>
<p>ErrorDocument 404 /index.php?error=404</p>
<p>The simple question is, can someone please explain exactly what that code does?</p></div>
<div class="smallfont" style="margin-bottom:2px;">
</div>
<div class="smallfont" style="margin-bottom:2px;">Sure!
</div>
<div class="smallfont" style="margin-bottom:2px;">
</div>
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre style="border:1px inset;overflow:auto;width:640px;height:34px;margin:0;padding:6px;">
<div style="text-align:left;" dir="ltr">RewriteBase /</div>
</pre>
</div>
<p>Says that all the rewriting will start from the directory the .htaccess file is located in</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre style="border:1px inset;overflow:auto;width:640px;height:34px;margin:0;padding:6px;">
<div style="text-align:left;" dir="ltr">RewriteCond %{REQUEST_FILENAME} !-f</div>
</pre>
</div>
<p>Continues to next rewritecond if the requested file does not exist</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre style="border:1px inset;overflow:auto;width:640px;height:34px;margin:0;padding:6px;">
<div style="text-align:left;" dir="ltr">RewriteCond %{REQUEST_FILENAME} !-d</div>
</pre>
</div>
<p>Continues to rewriterule if the requested file is not an existing directory</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre style="border:1px inset;overflow:auto;width:640px;height:34px;margin:0;padding:6px;">
<div style="text-align:left;" dir="ltr">RewriteRule . /index.php [L]</div>
</pre>
</div>
<p>Rewrites any request with 1 or more characters to /index.php, which launches wordpress and handles all redirections and what to display</p>
<p>If you want the mydomain2 to be handled differently, create an .htaccess file in the mydomain2 sub-directory with its own errordocument. ie.</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre style="border:1px inset;overflow:auto;width:640px;height:34px;margin:0;padding:6px;">
<div style="text-align:left;" dir="ltr">ErrorDocument 404 /mydomain2errors.php</div>
</pre>
</div>
<p>Or, alternatively, you can turn off the wordpress <a title="htaccess rewrite" href="http://www.askapache.com/htaccess/mod_rewrite-tips-and-tricks.html">htaccess rewriting</a> for that subdirectory.</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre style="border:1px inset;overflow:auto;width:640px;height:194px;margin:0;padding:6px;">
<div style="text-align:left;" dir="ltr"># BEGIN WordPress
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/mydomain2subdirectory.*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&lt;/IfModule&gt;

# END WordPress</div>
</pre>
</div>
</div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htaccessrewrite.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htaccessrewrite.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=7&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/06/02/htaccess-rewrite-code-explanation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e75e99da1ffc311fa8f86a8b6e44ed0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htaccess rewrite dude!</media:title>
		</media:content>
	</item>
		<item>
		<title>Access control with mod_rewrite</title>
		<link>http://htaccessrewrite.wordpress.com/2008/06/02/access-control-with-mod_rewrite/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/06/02/access-control-with-mod_rewrite/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 04:40:03 +0000</pubDate>
		<dc:creator>wordpress htaccess</dc:creator>
				<category><![CDATA[htaccess rewrite]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[.htaccess dynamic directories]]></category>
		<category><![CDATA[.htaccess mod_rewrite rules]]></category>
		<category><![CDATA[.htaccess php require]]></category>
		<category><![CDATA[.htaccess php.ini]]></category>
		<category><![CDATA[.htaccess redirect post variables]]></category>
		<category><![CDATA[.htaccess rewrite mask external link]]></category>
		<category><![CDATA[.htaccess rewrite rule]]></category>
		<category><![CDATA[500 error writable by group]]></category>
		<category><![CDATA[bbcode to html php script]]></category>
		<category><![CDATA[comment out htaccess]]></category>
		<category><![CDATA[convert unix timestamp into date php]]></category>
		<category><![CDATA[debugging htaccess redirect]]></category>
		<category><![CDATA[edit htaccess with php]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[filter traffic by language .htaccess]]></category>
		<category><![CDATA[hack htacess to hide index.php]]></category>
		<category><![CDATA[hacking htaccess]]></category>
		<category><![CDATA[hotlink code]]></category>
		<category><![CDATA[how much does mod rewrite]]></category>
		<category><![CDATA[how to get a new ip address]]></category>
		<category><![CDATA[how to get my ip address if it changes]]></category>
		<category><![CDATA[how to use htaccess rewriteengine]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[htaccess allow indexes]]></category>
		<category><![CDATA[htaccess auto_prepend_file]]></category>
		<category><![CDATA[htaccess hide url]]></category>
		<category><![CDATA[htaccess mod rewrite]]></category>
		<category><![CDATA[htaccess mod rewrite error page]]></category>
		<category><![CDATA[htaccess php include]]></category>
		<category><![CDATA[htaccess rewrite explained]]></category>
		<category><![CDATA[htaccess rewrite rule options]]></category>
		<category><![CDATA[htaccess rewrite url]]></category>
		<category><![CDATA[htaccess rewritecond .php]]></category>
		<category><![CDATA[htaccess rewriterule]]></category>
		<category><![CDATA[htaccess tips]]></category>
		<category><![CDATA[htaccess tips tricks]]></category>
		<category><![CDATA[htaccess url]]></category>
		<category><![CDATA[index.html before index.php .htaccess]]></category>
		<category><![CDATA[is .htaccess working]]></category>
		<category><![CDATA[mac os x show file names .htaccess]]></category>
		<category><![CDATA[mod rewrite htaccess]]></category>
		<category><![CDATA[mod rewrite php to htm]]></category>
		<category><![CDATA[mod_rewrite won't do anything in http.conf]]></category>
		<category><![CDATA[php get ip address of current computer command line]]></category>
		<category><![CDATA[php synchronize files]]></category>
		<category><![CDATA[php to .html with htaccess]]></category>
		<category><![CDATA[php url rewrite]]></category>
		<category><![CDATA[redirect subfolder to root]]></category>
		<category><![CDATA[redirecting 404 mod_rewrite]]></category>
		<category><![CDATA[rewrite direct index link htaccess]]></category>
		<category><![CDATA[rewrite dynamic urls to flat]]></category>
		<category><![CDATA[rewrite htaccess]]></category>
		<category><![CDATA[rewrite url .htaccess]]></category>
		<category><![CDATA[rewriterule htaccess]]></category>
		<category><![CDATA[short url + htaccess]]></category>
		<category><![CDATA[static ip address]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=6</guid>
		<description><![CDATA[url rewriting using .htaccess to rewrite the url some day we&#8217;ll rewrite links to work without query strings like on askapache.. Rewriting dynamic.php?id=12 to dynamic-12.html Redirection in which .php extension is hidden from the useragent’s address bar and dynamic url. code&#62;RewriteEngine on RewriteRule ^dynamic-([0-9]+)\.html$ dynamic.php?id=$1 Rewriting dynamic.php?id=7 to dynamic/indexes-access/7.html Alwaysdisplay the main keyword in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=6&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>url rewriting using .htaccess to rewrite the url some day we&#8217;ll rewrite links to work without query strings like on askapache..</p>
<h3>Rewriting dynamic.php?id=12 to dynamic-12.html</h3>
<p>Redirection in which .php extension is hidden from the useragent’s address bar and dynamic url.<br />
code&gt;RewriteEngine on<br />
RewriteRule ^dynamic-([0-9]+)\.html$ dynamic.php?id=$1</code></p>
<h3>Rewriting dynamic.php?id=7 to dynamic/indexes-access/7.html</h3>
<p>Alwaysdisplay the main keyword in the URL. In the following URL rewriting technique you can display the name of the dynamic in URL.</p>
<p><code>RewriteEngine on<br />
RewriteRule ^dynamic/([a-zA-Z0-9_-]+)/([0-9]+)\.html$ dynamic.php?id=$2</code></p>
</h3>
<p>Redirecting non www URL to www URL</h3>
<p>If you type yahoo.com in useragent it will be redirected to www.yahoo.com. If you want to do same with your website then put the following code to .htaccess file. </p>
<blockquote><p>
What is benefit of this kind of redirection?? Please check the post about SEO friendly redirect (301) redirect in php and .htaccess.</p>
</blockquote>
<p><code>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^htaccessrewrite\.com$<br />
RewriteRule (.*) http://www.htaccessrewrite.com/$1 [R=301,L]<br />
</code></p>
</h3>
<p>Redirecting the domain to a new subfolder of inside public_html.</h3>
<p>Now you can point both domains to /www/ directory as your DOC_ROOT.</p>
<p><code>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^rewrite\.com$ [OR]<br />
RewriteCond %{HTTP_HOST} ^www\.rewrite\.com$<br />
RewriteCond %{REQUEST_URI} !^/www/<br />
RewriteRule (.*) /www/$1 </code></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htaccessrewrite.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htaccessrewrite.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=6&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/06/02/access-control-with-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e75e99da1ffc311fa8f86a8b6e44ed0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htaccess rewrite dude!</media:title>
		</media:content>
	</item>
		<item>
		<title>htaccess rewrite with FrontPage AND Permalinks</title>
		<link>http://htaccessrewrite.wordpress.com/2008/06/02/htaccess-rewrite-with-frontpage-and-permalinks/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/06/02/htaccess-rewrite-with-frontpage-and-permalinks/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 02:10:22 +0000</pubDate>
		<dc:creator>wordpress htaccess</dc:creator>
				<category><![CDATA[htaccess rewrite]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[frontpage]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[htaccess mod_rewrite]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://htaccessrewrite.wordpress.com/?p=3</guid>
		<description><![CDATA[Normally, on a Unix server with the Microsoft FrontPage Server extensions installed WordPress works just fine and you are able to edit and publish pages (with Microsoft FrontPage) — until — you make a change to the permalinks (for example to the date based kind that I like /2005/04/etc). I often suggest that type of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=3&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Normally, on a Unix server with the Microsoft FrontPage Server extensions installed WordPress works just fine and you are able to edit and publish pages (with <span class="external text">Microsoft FrontPage</span>) — <strong>until</strong> — you make a change to the permalinks (for example to the date based kind that I like /2005/04/etc). I often suggest that type of URI to folks asking about permalinks etc, as that is the method recommended by the w3c (see <span class="external free">http://www.w3.org/Provider/Style/URI</span> ).</p>
<p>Now, the problem is that FrontPage uses the .htaccess file (which the WordPress mod_rewrite rules must access) for its &#8220;publishing&#8221; and &#8220;web authoring&#8221; configuration. As soon as the WordPress mod_rewrite code is added to the file, two things happen — the permalinks don&#8217;t work and the Frontpage Server extensions become corrupt.</p>
<p>I have tried countless ways to get around this, including trying to use rewrite rules that &#8220;ignore&#8221; the <tt>%{HTTP_USERAGENT)%</tt> used by FrontPage, to using a second AccessFilename <tt>.wpaccess</tt> to the <tt>httpd.conf</tt> file, and a host of other things, and nothing worked to allow use of FrontPage <em>and</em> management and use of permalinks in WordPress at the same time.</p>
<p>The solution is actually simple, and I figured it out by accident.</p>
<p>If you are using, or wish to use FrontPage (or if your hosting package is pre-configured that way) along with WordPress, you&#8217;ll need to take the following simple steps on your server or have your hosting company do them for you.</p>
<p>Microsoft FrontPage creates the following directory</p>
<pre>_vti_bin</pre>
<p>Nested within that it creates both</p>
<pre>_vti_adm</pre>
<p>and</p>
<pre>_vti_aut</pre>
<p>In addition to in your site (or WordPress) root folder in all of those directories you will find additional <tt>.htaccess</tt> files.</p>
<p>In all three of these directories AND in the root directory, at the top of ALL of the <tt>.htaccess</tt> files you simply need to add one line:</p>
<pre>Options +FollowSymlinks
</pre>
<p>There may or may not already be a line in each like</p>
<pre>Options None</pre>
<p>Edit and save each <tt>.htaccess</tt> file and you&#8217;re done. Now everything works perfectly, including FrontPage, AND the permalinks of your choosing.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htaccessrewrite.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htaccessrewrite.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=3&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/06/02/htaccess-rewrite-with-frontpage-and-permalinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e75e99da1ffc311fa8f86a8b6e44ed0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htaccess rewrite dude!</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://htaccessrewrite.wordpress.com/2008/06/02/hello-world/</link>
		<comments>http://htaccessrewrite.wordpress.com/2008/06/02/hello-world/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 01:31:11 +0000</pubDate>
		<dc:creator>wordpress htaccess</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=1&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htaccessrewrite.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htaccessrewrite.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htaccessrewrite.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htaccessrewrite.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htaccessrewrite.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htaccessrewrite.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htaccessrewrite.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htaccessrewrite.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htaccessrewrite.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htaccessrewrite.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htaccessrewrite.wordpress.com&amp;blog=3873784&amp;post=1&amp;subd=htaccessrewrite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htaccessrewrite.wordpress.com/2008/06/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e75e99da1ffc311fa8f86a8b6e44ed0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htaccess rewrite dude!</media:title>
		</media:content>
	</item>
	</channel>
</rss>
