Forum Moderators: phranque

Message Too Old, No Replies

.htaccess question >> hiding folders

how to hide folders....

         

hollywoodn

7:54 pm on Jul 15, 2003 (gmt 0)

10+ Year Member



will this work to prevent people from looking at my folders?

RewriteEngine On
RewriteCond %{HTTP_REFERER}!^http://www.yoursite.com [NC]
RewriteCond %{HTTP_REFERER}!^http://yoursite.com [NC]
RewriteRule [^/]+.(gif¦jpg)$ - [F]
Options -indexes

thanks
mark

hakre

8:02 am on Jul 16, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



hi mark,

Options -indexes will do the job.

-hakre

hollywoodn

7:09 pm on Jul 17, 2003 (gmt 0)

10+ Year Member



thanks!