<?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>Dev Team Assemble &#187; mod_rewrite</title>
	<atom:link href="http://www.calvinirwin.net/tag/mod_rewrite/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.calvinirwin.net</link>
	<description>Evil beware!</description>
	<lastBuildDate>Mon, 06 Feb 2012 18:42:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>URL Rewriter</title>
		<link>http://www.calvinirwin.net/2009/07/26/url-rewriter/</link>
		<comments>http://www.calvinirwin.net/2009/07/26/url-rewriter/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 18:59:46 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[url rewriter]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=25</guid>
		<description><![CDATA[I came across this neat tool (well a colleague of mine did and told me about it) from Helicon called URL Rewriter. Basically it allows you to use an ISAPI filter to rewrite the url that the server uses to work with in IIS and is essentially a copy of the mod_rewrite utility available in [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this neat tool (well a colleague of mine did and told me about it) from Helicon called<a href="http://www.helicontech.com/"> URL Rewriter</a>. Basically it allows you to use an ISAPI filter to rewrite the url that the server uses to work with in IIS and is essentially a copy of the mod_rewrite utility available in Apache.</p>
<p>It uses Regular expressions...so if you are not an expert in those (as I am clearly not) then this little tidbit of code may help. It allows you to rewrite the url that comes in as subdomain.domain.com as domain.com/subdomain. The top portion is the header and sets up logging and such...the real meat is the last two lines.</p>
<p>Here it is</p>
<p># Helicon ISAPI_Rewrite configuration file<br />
# Version 3.1.0.48<br />
RewriteEngine On<br />
RewriteCompatibility2 On<br />
RepeatLimit 200<br />
RewriteBase<br />
ReWriteLog C:\rewrite.log<br />
RewriteLogLevel 9</p>
<p>RewriteCond %{HTTP_HOST} ^(?!www)(\w+).christiedigital\.com<br />
RewriteRule (.*) /%1/$1 [L]</p>
<p>Hope this helps</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Development' rel='tag' target='_self'>Development</a>, <a class='technorati-link' href='http://technorati.com/tag/IIS' rel='tag' target='_self'>IIS</a>, <a class='technorati-link' href='http://technorati.com/tag/mod_rewrite' rel='tag' target='_self'>mod_rewrite</a>, <a class='technorati-link' href='http://technorati.com/tag/url+rewriter' rel='tag' target='_self'>url rewriter</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/07/26/url-rewriter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

