On 8/16/07, <b class="gmail_sendername"><a href="mailto:tuliol@sybatech.com">tuliol@sybatech.com</a></b> &lt;<a href="mailto:tuliol@sybatech.com">tuliol@sybatech.com</a>&gt; wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks for your response.&nbsp;&nbsp;The settings directory I believe is virtual so what<br>would the directory entry look like?&nbsp;&nbsp;My mythweb root is in:<br>/var/www/html/mythweb<br><br>This is what I tried:<br><br>&lt;Directory /var/www/html/mythweb/settings&gt;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order Deny,Allow<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from All<br>&nbsp;&nbsp;&lt;/Directory&gt;<br><br>Is this correct?</blockquote><div><br>No, &lt;Directory&gt; doesn&#39;t work for virtual directories.&nbsp; You need to use &lt;Location&gt; instead, as shown here:
<br><br>&lt;Location /mythweb/settings&gt;<br>&nbsp; Order Deny, Allow<br>&nbsp; Deny from All<br>&lt;/Location&gt;<br><br>Carl Fongheiser<br></div><br></div><br>