<?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>Server Sitters Tech Corner &#187; Htaccess</title>
	<atom:link href="http://serversitters.com/technical/category/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>http://serversitters.com/technical</link>
	<description>Outsourced Web Hosting Support</description>
	<lastBuildDate>Wed, 15 Dec 2010 12:03:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Disable directory indexing</title>
		<link>http://serversitters.com/technical/htaccess/disable-directory-indexing/</link>
		<comments>http://serversitters.com/technical/htaccess/disable-directory-indexing/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 21:45:57 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Htaccess]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=145</guid>
		<description><![CDATA[The easiest way to disable directory indexing is to update/create a .htaccess. Add the following to a .htaccess file within your primary web folder: Options -Indexes]]></description>
			<content:encoded><![CDATA[<p>The easiest way to disable directory indexing is to update/create a .htaccess.  Add the following to a .htaccess file within your primary web folder:<br />
<code>Options -Indexes</code></p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/htaccess/disable-directory-indexing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Zend using a .htaccess file</title>
		<link>http://serversitters.com/technical/htaccess/disable-zend-using-a-htaccess-file/</link>
		<comments>http://serversitters.com/technical/htaccess/disable-zend-using-a-htaccess-file/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 16:52:46 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Htaccess]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=67</guid>
		<description><![CDATA[Some clients wish to disable zend on their site. This can be accomplished by creating a .htaccess file in their home folder with the following code: php_flag zend.ze1_compatibility_mode off]]></description>
			<content:encoded><![CDATA[<p>Some clients wish to disable zend on their site.  This can be accomplished by creating a .htaccess file in their home folder with the following code:<br />
<code><br />
php_flag zend.ze1_compatibility_mode off</code></p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/htaccess/disable-zend-using-a-htaccess-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting CGI to execute outside cgi-bin</title>
		<link>http://serversitters.com/technical/htaccess/setting-cgi-to-execute-outside-cgi-bin/</link>
		<comments>http://serversitters.com/technical/htaccess/setting-cgi-to-execute-outside-cgi-bin/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:36:26 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Htaccess]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=62</guid>
		<description><![CDATA[The following line can be placed within a .htaccess file in the folder you wish to have CGI execution rights. Options +ExecCGI]]></description>
			<content:encoded><![CDATA[<p>The following line can be placed within a .htaccess file in the folder you wish to have CGI execution rights.</p>
<p><code>Options +ExecCGI</code></p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/htaccess/setting-cgi-to-execute-outside-cgi-bin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent Image Hotlinking</title>
		<link>http://serversitters.com/technical/htaccess/prevent-image-hotlinking/</link>
		<comments>http://serversitters.com/technical/htaccess/prevent-image-hotlinking/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 18:51:55 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Htaccess]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=45</guid>
		<description><![CDATA[Add The Following code to a .htaccess file in your home folder. RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.com(/)?.*$     [NC] RewriteRule .*\.(gif&#124;jpg&#124;jpeg&#124;bmp)$ – [F,NC] In the example above be sure to replace domain.com with your actual domain name.   This will stop other sites from hotlinking images that end in .gif, .jpg, .jpeg, and .bmp.]]></description>
			<content:encoded><![CDATA[<div>
<p>Add The Following code to a .htaccess file in your home folder.</p>
<p>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.com(/)?.*$     [NC]<br />
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ – [F,NC]</p>
<p>In the example above be sure to replace domain.com with your actual domain name.   This will stop other sites from hotlinking images that end in .gif, .jpg, .jpeg, and .bmp.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/htaccess/prevent-image-hotlinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

