<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Htaccess &#8211; The Ultimate Guide</title>
	<atom:link href="http://www.askapache.com/htaccess/htaccess.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/htaccess/htaccess.html</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 16 May 2013 00:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Casey Dwayne</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-14707</link>
		<dc:creator>Casey Dwayne</dc:creator>
		<pubDate>Mon, 15 Apr 2013 23:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-14707</guid>
		<description><![CDATA[Awesome article. Thanks for the great resource.]]></description>
		<content:encoded><![CDATA[<p>Awesome article. Thanks for the great resource.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abimo Corde</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-14706</link>
		<dc:creator>Abimo Corde</dc:creator>
		<pubDate>Mon, 15 Apr 2013 14:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-14706</guid>
		<description><![CDATA[Superb! Thanks]]></description>
		<content:encoded><![CDATA[<p>Superb! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cam</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-9331</link>
		<dc:creator>Cam</dc:creator>
		<pubDate>Tue, 05 Feb 2013 23:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-9331</guid>
		<description><![CDATA[I was recommended this web site by a friend.

I am not sure whether this post is written by him as no one else know 
such detailed about my difficulty. You are amazing!
Thanks!]]></description>
		<content:encoded><![CDATA[<p>I was recommended this web site by a friend.</p>
<p>I am not sure whether this post is written by him as no one else know<br />
such detailed about my difficulty. You are amazing!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Drinnan</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-6641</link>
		<dc:creator>Peter Drinnan</dc:creator>
		<pubDate>Fri, 25 Jan 2013 21:42:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-6641</guid>
		<description><![CDATA[Awesome tutorials! Saved me hours. Thank you!]]></description>
		<content:encoded><![CDATA[<p>Awesome tutorials! Saved me hours. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sholac</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-5909</link>
		<dc:creator>Sholac</dc:creator>
		<pubDate>Tue, 22 Jan 2013 17:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-5909</guid>
		<description><![CDATA[Hello I just find this website very useful! Thanks!
After I had problems with attacks htaccess resolve my problems. I still got attacks but they are blocked.

I put some things to my htaccess file of my wordpress website.

Can you look over it and tell me is it good, so I can add it to all my websites.
Here is code from htaccess

------------------------------------------------------------------------------------------------------------------------------
&lt;pre&gt;# STRONG HTACCESS PROTECTION
&#160;
# BEGIN WordPress
&#160;
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ â€“ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&#160;
# END WordPress
&#160;
RewriteCond %{QUERY_STRING} (\&#124;%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=&#124;\[&#124;\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=&#124;\[&#124;\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
&#160;
# directory browsing
Options All -Indexes
&#160;
# QUERY STRING EXPLOITS
RewriteCond %{QUERY_STRING} ../ [NC,OR]
RewriteCond %{QUERY_STRING} boot.ini [NC,OR]
RewriteCond %{QUERY_STRING} tag= [NC,OR]
RewriteCond %{QUERY_STRING} ftp: [NC,OR]
RewriteCond %{QUERY_STRING} http: [NC,OR]
RewriteCond %{QUERY_STRING} https: [NC,OR]
RewriteCond %{QUERY_STRING} mosConfig [NC,OR]
RewriteCond %{QUERY_STRING} ^.*([&#124;]&#124;(&#124;)&#124;&#124;â€™&#124;â€&#124;;&#124;?&#124;*).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(%22&#124;%27&#124;%3C&#124;%3E&#124;%5C&#124;%7B&#124;%7C).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(%0&#124;%A&#124;%B&#124;%C&#124;%D&#124;%E&#124;%F&#124;127.0).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(globals&#124;encode&#124;config&#124;localhost&#124;loopback).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(request&#124;select&#124;insert&#124;union&#124;declare&#124;drop).* [NC]
RewriteRule ^(.*)$ â€“ [F,L]
&lt;/pre&gt;
----------------------------------------------------------------------------------------------------------------------------------------------------------------------

Thanks, I really appreciate your help here!

Sholac]]></description>
		<content:encoded><![CDATA[<p>Hello I just find this website very useful! Thanks!<br />
After I had problems with attacks htaccess resolve my problems. I still got attacks but they are blocked.</p>
<p>I put some things to my htaccess file of my wordpress website.</p>
<p>Can you look over it and tell me is it good, so I can add it to all my websites.<br />
Here is code from htaccess</p>
<p>------------------------------------------------------------------------------------------------------------------------------</p>
<pre># STRONG HTACCESS PROTECTION
&nbsp;
# BEGIN WordPress
&nbsp;
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ â€“ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&nbsp;
# END WordPress
&nbsp;
RewriteCond %{QUERY_STRING} (\|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
&nbsp;
# directory browsing
Options All -Indexes
&nbsp;
# QUERY STRING EXPLOITS
RewriteCond %{QUERY_STRING} ../ [NC,OR]
RewriteCond %{QUERY_STRING} boot.ini [NC,OR]
RewriteCond %{QUERY_STRING} tag= [NC,OR]
RewriteCond %{QUERY_STRING} ftp: [NC,OR]
RewriteCond %{QUERY_STRING} http: [NC,OR]
RewriteCond %{QUERY_STRING} https: [NC,OR]
RewriteCond %{QUERY_STRING} mosConfig [NC,OR]
RewriteCond %{QUERY_STRING} ^.*([|]|(|)||â€™|â€|;|?|*).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(%22|%27|%3C|%3E|%5C|%7B|%7C).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(%0|%A|%B|%C|%D|%E|%F|127.0).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(globals|encode|config|localhost|loopback).* [NC,OR]
RewriteCond %{QUERY_STRING} ^.*(request|select|insert|union|declare|drop).* [NC]
RewriteRule ^(.*)$ â€“ [F,L]</pre>
<p>----------------------------------------------------------------------------------------------------------------------------------------------------------------------</p>
<p>Thanks, I really appreciate your help here!</p>
<p>Sholac</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noah</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-2621</link>
		<dc:creator>Noah</dc:creator>
		<pubDate>Tue, 27 Nov 2012 19:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-2621</guid>
		<description><![CDATA[&lt;p&gt;This is a fantastic resource.  Thank you for all of the work you&#039;ve put into compiling this cache of information.   Most people overlook the protection and increase in usability some (comparatively) simple server rules have to offer.&lt;/p&gt;
&lt;p&gt;Puns intended, you&#039;re the man.&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>This is a fantastic resource.  Thank you for all of the work you've put into compiling this cache of information.   Most people overlook the protection and increase in usability some (comparatively) simple server rules have to offer.</p>
<p>Puns intended, you're the man.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bridgette</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-2619</link>
		<dc:creator>Bridgette</dc:creator>
		<pubDate>Sun, 25 Nov 2012 19:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-2619</guid>
		<description><![CDATA[&lt;p&gt;Nice blog here! Also your site loads up fast! What web host are you using?&lt;/p&gt;
&lt;p&gt;Can I get your affiliate link to your host? I wish my site loaded up as quickly as yours lol&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Nice blog here! Also your site loads up fast! What web host are you using?</p>
<p>Can I get your affiliate link to your host? I wish my site loaded up as quickly as yours lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: klobirne</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-2604</link>
		<dc:creator>klobirne</dc:creator>
		<pubDate>Sun, 02 Sep 2012 18:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-2604</guid>
		<description><![CDATA[I&#039;m extremely impressed with your writing skills as well as with the layout on your weblog. Is this a paid theme or did you customize it yourself? Either way keep up the excellent quality writing, it&#039;s rare to see a nice blog like this one today.]]></description>
		<content:encoded><![CDATA[<p>I'm extremely impressed with your writing skills as well as with the layout on your weblog. Is this a paid theme or did you customize it yourself? Either way keep up the excellent quality writing, it's rare to see a nice blog like this one today.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mleenen</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-2602</link>
		<dc:creator>mleenen</dc:creator>
		<pubDate>Sat, 31 Mar 2012 09:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-2602</guid>
		<description><![CDATA[&lt;p&gt;I have a .htaccess with the following 3 lines:&lt;/p&gt;
&lt;pre&gt;Deny from all
ErrorDocument 404 &quot;404 means not found.&quot;
ErrorDocument 403 &quot;403 means forbidden.&quot;&lt;/pre&gt;

&lt;p&gt;This should block all access to any page. Right?&lt;/p&gt;
&lt;p&gt;When I use: http://localhost/index.php, my own 403 is returned.
However, when I use http://localhost/index.php the &#039;standard&#039; error document is returned.&lt;/p&gt;

&lt;p&gt;How can I make sure that in all cases, my own customized 403 is returned?&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>I have a .htaccess with the following 3 lines:</p>
<pre>Deny from all
ErrorDocument 404 "404 means not found."
ErrorDocument 403 "403 means forbidden."</pre>
<p>This should block all access to any page. Right?</p>
<p>When I use: http://localhost/index.php, my own 403 is returned.<br />
However, when I use http://localhost/index.php the 'standard' error document is returned.</p>
<p>How can I make sure that in all cases, my own customized 403 is returned?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wel</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-2601</link>
		<dc:creator>wel</dc:creator>
		<pubDate>Fri, 16 Dec 2011 05:37:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-2601</guid>
		<description><![CDATA[Hi Sir,

Really appreciated this your post. A true manifestation of a what a computer scientist is. Hard work.

Cheers.]]></description>
		<content:encoded><![CDATA[<p>Hi Sir,</p>
<p>Really appreciated this your post. A true manifestation of a what a computer scientist is. Hard work.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
