<?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: Useful .htaccess Tricks for Webmasters</title>
	<atom:link href="http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/</link>
	<description>Simple Themes &#38; Tutorials</description>
	<lastBuildDate>Mon, 25 Jan 2010 02:00:26 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ne-design</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-35</link>
		<dc:creator>ne-design</dc:creator>
		<pubDate>Thu, 27 Nov 2008 22:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-35</guid>
		<description>I believe that can be done using mod_write. Here is an example that may help you.

RewriteCond support/$
RewriteCond support$
RewriteRule ^(.*)$ http://%{SERVER_NAME}/support.html</description>
		<content:encoded><![CDATA[<p>I believe that can be done using mod_write. Here is an example that may help you.</p>
<p>RewriteCond support/$<br />
RewriteCond support$<br />
RewriteRule ^(.*)$ <a href="http://%" rel="nofollow">http://%</a>{SERVER_NAME}/support.html</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iván</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-34</link>
		<dc:creator>Iván</dc:creator>
		<pubDate>Wed, 26 Nov 2008 18:26:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-34</guid>
		<description>Hi, I´d like to hide the extension of my sites, I mean I´d like to see http://www.mysite.com/support instead of  http://www.mysite.com/support.html
 
How could I do that?</description>
		<content:encoded><![CDATA[<p>Hi, I´d like to hide the extension of my sites, I mean I´d like to see <a href="http://www.mysite.com/support" rel="nofollow">http://www.mysite.com/support</a> instead of  <a href="http://www.mysite.com/support.html" rel="nofollow">http://www.mysite.com/support.html</a></p>
<p>How could I do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laszlo Baranyai</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-33</link>
		<dc:creator>Laszlo Baranyai</dc:creator>
		<pubDate>Fri, 26 Sep 2008 06:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-33</guid>
		<description>If you have a download script, you can prevent direct access to  directory content by (similar to your redirect code):

order deny,allow
deny from all
allow from localhost

I would extend the tricks with some anti-spam options line:

SetEnvIfNoCase Referer &quot;.*(keyword1&#124;keyword2&#124;etc).*&quot; BadReferrer
order deny,allow
deny from env=BadReferrer

and:


 order allow,deny
 deny from 1.2.3.4
 deny from 2.3.4.
 deny from 3.4.
 allow from all


This latter with B and C zones will punish the spammers&#039; service providers and other users as well. Use carefully!</description>
		<content:encoded><![CDATA[<p>If you have a download script, you can prevent direct access to  directory content by (similar to your redirect code):</p>
<p>order deny,allow<br />
deny from all<br />
allow from localhost</p>
<p>I would extend the tricks with some anti-spam options line:</p>
<p>SetEnvIfNoCase Referer &#8220;.*(keyword1|keyword2|etc).*&#8221; BadReferrer<br />
order deny,allow<br />
deny from env=BadReferrer</p>
<p>and:</p>
<p> order allow,deny<br />
 deny from 1.2.3.4<br />
 deny from 2.3.4.<br />
 deny from 3.4.<br />
 allow from all</p>
<p>This latter with B and C zones will punish the spammers&#8217; service providers and other users as well. Use carefully!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ne-design</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-32</link>
		<dc:creator>ne-design</dc:creator>
		<pubDate>Sat, 20 Sep 2008 18:18:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-32</guid>
		<description>Thanks for your comment AskApache!
I always love your tutorials on Apache.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment AskApache!<br />
I always love your tutorials on Apache.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskApache</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-31</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sat, 20 Sep 2008 10:24:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-31</guid>
		<description>Ya isn&#039;t .htaccess awesome!  Those particular tips are from versions of my original &lt;a href=&quot;http://www.askapache.com/htaccess/ultimate-htaccess-file-sample.html&quot; rel=&quot;nofollow&quot;&gt;.htaccess tutorial&lt;/a&gt; which has since been updated to the u&lt;a href=&quot;http://www.askapache.com/htaccess/apache-htaccess.html&quot; rel=&quot;nofollow&quot;&gt;ultimate htaccess tutorial&lt;/a&gt;, a series of .htaccess cheatsheets you are free to use!

:)

Also see this passwordrobot post: &lt;a href=&quot;http://passwordrobot.com/blog/5-htaccess-tricks-every-webmaster-should-know/&quot; rel=&quot;nofollow&quot;&gt;5 htaccess tricks every webmaster should know.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Ya isn&#8217;t .htaccess awesome!  Those particular tips are from versions of my original <a href="http://www.askapache.com/htaccess/ultimate-htaccess-file-sample.html" rel="nofollow">.htaccess tutorial</a> which has since been updated to the u<a href="http://www.askapache.com/htaccess/apache-htaccess.html" rel="nofollow">ultimate htaccess tutorial</a>, a series of .htaccess cheatsheets you are free to use!</p>
<p> <img src='http://www.ragard-jp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also see this passwordrobot post: <a href="http://passwordrobot.com/blog/5-htaccess-tricks-every-webmaster-should-know/" rel="nofollow">5 htaccess tricks every webmaster should know.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: celeb</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-30</link>
		<dc:creator>celeb</dc:creator>
		<pubDate>Tue, 16 Sep 2008 09:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-30</guid>
		<description>maybe u could just make cheat-sheet you know? might be really useful... with all of the tricks together</description>
		<content:encoded><![CDATA[<p>maybe u could just make cheat-sheet you know? might be really useful&#8230; with all of the tricks together</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Super Useful .htaccess Tips &#124; reallygoodmagazine.com</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-29</link>
		<dc:creator>Super Useful .htaccess Tips &#124; reallygoodmagazine.com</dc:creator>
		<pubDate>Mon, 15 Sep 2008 23:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-29</guid>
		<description>[...] These are awesome.  For those of you who have been setting up sites for some time, you have probably needed these at some point.  If you haven&#8217;t you can sure use them.  HERE IT IS [...]</description>
		<content:encoded><![CDATA[<p>[...] These are awesome.  For those of you who have been setting up sites for some time, you have probably needed these at some point.  If you haven&#8217;t you can sure use them.  HERE IT IS [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ne-design</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-28</link>
		<dc:creator>ne-design</dc:creator>
		<pubDate>Mon, 15 Sep 2008 18:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-28</guid>
		<description>Thanks for another good trick celeb!

I will be making a part 2 for this one. There&#039;s too many .htaccess tricks I couldn&#039;t write it in one day.</description>
		<content:encoded><![CDATA[<p>Thanks for another good trick celeb!</p>
<p>I will be making a part 2 for this one. There&#8217;s too many .htaccess tricks I couldn&#8217;t write it in one day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: celeb</title>
		<link>http://www.ragard-jp.com/tutorials/useful-htaccess-tricks-for-webmasters/comment-page-1/#comment-27</link>
		<dc:creator>celeb</dc:creator>
		<pubDate>Mon, 15 Sep 2008 17:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.ragard-jp.com/?p=157#comment-27</guid>
		<description>extremely useful... you could just add this:

RewriteEngine On
RewriteRule ^(.*)\/article\/(.*)\/ %{DOCUMENT_ROOT}/article.php?lang=$1&amp;name=$2 [L]

for making &quot;nice&quot; URLs</description>
		<content:encoded><![CDATA[<p>extremely useful&#8230; you could just add this:</p>
<p>RewriteEngine On<br />
RewriteRule ^(.*)\/article\/(.*)\/ %{DOCUMENT_ROOT}/article.php?lang=$1&amp;name=$2 [L]</p>
<p>for making &#8220;nice&#8221; URLs</p>
]]></content:encoded>
	</item>
</channel>
</rss>
