<?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"
	>
<channel>
	<title>Comments on: Manipulating HTTP Headers with htaccess</title>
	<atom:link href="http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html</link>
	<description>Web Development</description>
	<pubDate>Sun, 20 Jul 2008 18:22:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: How to set the cache-control sent to a user&#8217;s browser? &#171; Zenutech</title>
		<link>http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#comment-40246</link>
		<dc:creator>How to set the cache-control sent to a user&#8217;s browser? &#171; Zenutech</dc:creator>
		<pubDate>Sat, 03 May 2008 04:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/using-http-headers-with-htaccess.html#comment-40246</guid>
		<description>[...] information to learn how to prevent the caching of particular filenames using an .htaccess file: http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#prevent-caching-with-htacces...  Tags: browser caching, cache-control, htaccess, http headers, no-cache header  Posted 2008-05-02 [...]</description>
		<content:encoded><![CDATA[<p>[...] information to learn how to prevent the caching of particular filenames using an .htaccess file: <a href="http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#prevent-caching-with-htacces.." rel="nofollow">http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#prevent-caching-with-htacces..</a>.  Tags: browser caching, cache-control, htaccess, http headers, no-cache header  Posted 2008-05-02 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnny</title>
		<link>http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#comment-38572</link>
		<dc:creator>johnny</dc:creator>
		<pubDate>Wed, 09 Apr 2008 01:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/using-http-headers-with-htaccess.html#comment-38572</guid>
		<description>I have multiple folders inside an assets folder that contain mp3 &#38; swf files that I do not want to cache. this is my htaccess code not sure if im using it correctly

&lt;pre&gt;RewriteEngine on&lt;br /&gt;
rewritecond %{http_host} ^ninjatactics.net [nc]&lt;br /&gt;
rewriterule ^(.*)$ http://www.ninjatactics.net/$1 [r=301,nc]&lt;br /&gt;
&#160;&lt;br /&gt;
FileETag None&lt;br /&gt;
Header unset ETag&lt;br /&gt;
Header set Cache-Control &#34;max-age=0, no-cache, no-store, private&#34;&lt;br /&gt;
Header set Pragma &#34;no-cache&#34;&lt;br /&gt;
Header set Expires &#34;0&#34;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>I have multiple folders inside an assets folder that contain mp3 &amp; swf files that I do not want to cache. this is my htaccess code not sure if im using it correctly</p>
<pre>RewriteEngine on
rewritecond %{http_host} ^ninjatactics.net [nc]
rewriterule ^(.*)$ <a href="http://www.ninjatactics.net/1" rel="nofollow">http://www.ninjatactics.net/1</a> [r=301,nc]
&nbsp;
FileETag None
Header unset ETag
Header set Cache-Control &quot;max-age=0, no-cache, no-store, private&quot;
Header set Pragma &quot;no-cache&quot;
Header set Expires &quot;0&quot;</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskApache</title>
		<link>http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#comment-38536</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Tue, 08 Apr 2008 15:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/using-http-headers-with-htaccess.html#comment-38536</guid>
		<description>@ johnny

use the &lt;a href="http://www.askapache.com/online-tools/http-headers-tool/" rel="nofollow"&gt;http header viewer tool&lt;/a&gt; to see if its working, if not then paste your .htaccess</description>
		<content:encoded><![CDATA[<p>@ johnny</p>
<p>use the <a href="http://www.askapache.com/online-tools/http-headers-tool/" rel="nofollow">http header viewer tool</a> to see if its working, if not then paste your .htaccess</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnny</title>
		<link>http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#comment-38512</link>
		<dc:creator>johnny</dc:creator>
		<pubDate>Tue, 08 Apr 2008 13:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/using-http-headers-with-htaccess.html#comment-38512</guid>
		<description>i am using the "100% Prevent Files from being cached" htaccess code but not sure i am using it correctly. I created the file in placed it in the root directory. do i need to specify where my files are locate in the htaccess file?</description>
		<content:encoded><![CDATA[<p>i am using the &#8220;100% Prevent Files from being cached&#8221; htaccess code but not sure i am using it correctly. I created the file in placed it in the root directory. do i need to specify where my files are locate in the htaccess file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskApache</title>
		<link>http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html#comment-38448</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Mon, 07 Apr 2008 23:49:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/using-http-headers-with-htaccess.html#comment-38448</guid>
		<description>@ Daniel

Works for me..  the &lt;strong&gt;&lt;code&gt;http-equiv&lt;/code&gt; meta tag&lt;/strong&gt; literally means &lt;code&gt;http header equivelant&lt;/code&gt;.  http header is better of course.</description>
		<content:encoded><![CDATA[<p>@ Daniel</p>
<p>Works for me..  the <strong><code>http-equiv</code> meta tag</strong> literally means <code>http header equivelant</code>.  http header is better of course.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
