<?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>carbonBased Life &#187; htaccess</title>
	<atom:link href="http://www.carbonbasedlife.com/word/category/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.carbonbasedlife.com/word</link>
	<description>Pushing the Infinite</description>
	<lastBuildDate>Fri, 04 Jun 2010 04:37:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Prevent Image Hotlinking</title>
		<link>http://www.carbonbasedlife.com/word/2009.05.02.prevent-image-hotlinking/</link>
		<comments>http://www.carbonbasedlife.com/word/2009.05.02.prevent-image-hotlinking/#comments</comments>
		<pubDate>Sun, 03 May 2009 05:03:41 +0000</pubDate>
		<dc:creator>dwight</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[atomSix]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[htaccess code development]]></category>

		<guid isPermaLink="false">http://www.carbonbasedlife.com/word/?p=158</guid>
		<description><![CDATA[Append “No Hotlinking” Code to the.htaccess File
Protect your bandwidth whenever possible. By adding a few lines of code to your root level .htaccess file you can prevent external websites from directly loading your images, audio, and video files.
Add the following code to your .htaccess file:
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^$
RewriteCond %{HTTP_REFERER} ^http://www.?your-domain.com/.$ [NC]
RewriteRule \.gif&#124;jpe?g&#124;png&#124;mov&#124;avi&#124;wmv&#124;mpe?g$ - [F]
[AaronHalford.com]
]]></description>
			<content:encoded><![CDATA[<p>Append “No Hotlinking” Code to the.htaccess File</p>
<p>Protect your bandwidth whenever possible. By adding a few lines of code to your root level .htaccess file you can prevent external websites from directly loading your images, audio, and video files.</p>
<p>Add the following code to your .htaccess file:</p>
<p><code>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} ^$<br />
RewriteCond %{HTTP_REFERER} ^http://www.?your-domain.com/.$ [NC]<br />
RewriteRule \.gif|jpe?g|png|mov|avi|wmv|mpe?g$ - [F]</code></p>
<p>[<a href="http://blog.aaronhalford.com/2009/02/07/13-often-overlooked-setup-steps-for-new-wordpress-blogs/">AaronHalford.com</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.carbonbasedlife.com/word/2009.05.02.prevent-image-hotlinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
