<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1024428" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1024428</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1150078</link>
    <description> &lt;p&gt;Mmmkay, I got it working:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;RewriteEngine on&lt;br /&gt;RewriteCond %{REQUEST_URI} ^(.*).gif$&lt;br /&gt;ReWriteRule ^(.*)?/(.*)?$ $1~$2&lt;br /&gt;ReWriteRule ^(.*).gif$ secure.php?url=$1.gif&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Problem solved.&lt;/p&gt;
 </description>
     <pubDate>Wed, 21 Apr 2004 18:56:34 +0000</pubDate>
 <dc:creator>booyabazooka</dc:creator>
 <guid isPermaLink="false">comment 1150078 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149428</link>
    <description> &lt;p&gt;I... have no idea what that means.&lt;/p&gt;
&lt;p&gt;Update:&lt;br /&gt;
I got this to work by changing the config from &quot;AllowOverride none&quot; to &quot;AllowOverride All&quot;.&lt;br /&gt;
I&#039;ve also uncommented LoadModule rewrite_module modules/mod_rewrite.so&lt;/p&gt;
&lt;p&gt;Now I just don&#039;t know how to get it to do what I want.  Can anyone help?&lt;/p&gt;
&lt;p&gt;I need to replace (foo).gif with secure.php?url=(foo).gif.  A few issues: since there can&#039;t be slashes after the question mark in the url, I need to escape those or replace them with another character; also, it needs to only do this replacement if &quot;.php&quot; isn&#039;t in the url, to prevent looping.&lt;/p&gt;
&lt;p&gt;I don&#039;t understand the syntax well enough at this point to write anything that works... so any help would be great.&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 22:25:39 +0000</pubDate>
 <dc:creator>booyabazooka</dc:creator>
 <guid isPermaLink="false">comment 1149428 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149426</link>
    <description> &lt;p&gt;is your mod_rewrite being loaded in your apache config?&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 22:21:56 +0000</pubDate>
 <dc:creator>s0da</dc:creator>
 <guid isPermaLink="false">comment 1149426 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149425</link>
    <description> &lt;p&gt;&lt;img src=&quot;http://booya.no-ip.org:8080/test/arrow11.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; Still... not... doing... anything.&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 22:16:37 +0000</pubDate>
 <dc:creator>booyabazooka</dc:creator>
 <guid isPermaLink="false">comment 1149425 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149422</link>
    <description> &lt;p&gt;maybe its the :8080 try that&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:51:17 +0000</pubDate>
 <dc:creator>s0da</dc:creator>
 <guid isPermaLink="false">comment 1149422 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149421</link>
    <description> &lt;p&gt;Still no...&lt;/p&gt;
&lt;p&gt;It looks like Apache isn&#039;t even looking at .htaccess.  It&#039;s in the same directory with the image... do I need to do anything with Apache&#039;s config files?&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:49:20 +0000</pubDate>
 <dc:creator>booyabazooka</dc:creator>
 <guid isPermaLink="false">comment 1149421 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149420</link>
    <description> &lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;RewriteEngine On&lt;br /&gt;RewriteCond %{HTTP_REFERER} !^$&lt;br /&gt;RewriteCond %{HTTP_REFERER} !^http://booya.no-ip.org:8080(/)?.*$ [NC]&lt;br /&gt;RewriteRule .*\.(gif|jpg|jpeg|png|bmp)$ images/nohotlink.jpg [L,F,NC]&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:42:42 +0000</pubDate>
 <dc:creator>s0da</dc:creator>
 <guid isPermaLink="false">comment 1149420 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149419</link>
    <description> &lt;p&gt;Yep, I have the file renamed fine... funny, I&#039;m running Windows 2000.&lt;/p&gt;
&lt;p&gt;But it doesn&#039;t seem to do anything.&lt;/p&gt;
&lt;p&gt;For the record, I&#039;m just building the site on my Windows box.  The server where it will end up will undoubtedly be running a real OS.&lt;/p&gt;
&lt;p&gt;The php script embeds text into a gif file.  Since many people don&#039;t know about gif comment fields, this should serve as a decent security mechanism to prevent people from ripping off our images.&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:40:43 +0000</pubDate>
 <dc:creator>booyabazooka</dc:creator>
 <guid isPermaLink="false">comment 1149419 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149418</link>
    <description> &lt;p&gt;Cpanel is not currently available for Windows Servers. You should be able to rename the file by doing this from the command line (DOS prompt).&lt;br /&gt;
&lt;strong&gt;ren something.htaccess &quot;.htaccess&quot;&lt;/strong&gt; with the quotes around the .htaccess. You usually don&#039;t have that problem in Windows 2000/XP, mainly on Windows 9X machines.&lt;/p&gt;
&lt;p&gt;Doing something like that will be very processor intensive on your site. Just curious what your reason is for attempting this?&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:24:37 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1149418 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/htaccess-noob-questions#comment-1149416</link>
    <description> &lt;p&gt;does your server use cpanel? if so then you can do it through there instead of doing it yourself.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;q=htaccess+image&quot; class=&quot;bb-url&quot;&gt;http://www.google.com/search?hl=en&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;q=htaccess+image&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:02:31 +0000</pubDate>
 <dc:creator>s0da</dc:creator>
 <guid isPermaLink="false">comment 1149416 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
