The image verification code you entered is incorrect.

Aapache Secure Folder Access: Order Deny Allow

Aapache Secure Folder Access

You should try to completely restrict access by default and open access as appropriate. The following restricts access  to everything.

<Directory />
    Options None
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

Order directive can be:
Deny,Allow
The Deny directives are evaluated before the Allow directives. Access is allowed by default. Any client which does not match a Deny directive or does match an Allow directive will be allowed access to the server.
Allow,Deny
The Allow directives are evaluated before the Deny directives. Access is denied by default. Any client which does not match an Allow directive or does match a Deny directive will be denied access to the server.

For example to only permit access to a certain area of your site to a particular ip (replace 12.x.x.x with a valid ip):

<Directory /myadminarea>
    Order deny,allow
    Deny from all
    Allow from 12.x.x.x
</Directory>

Reference:
Order Directive
Allow Directive
Deny Directive
Good articel on hotlinking: http://drupal.org/node/82347



Reply

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
More information about formatting options Captcha Image: you will need to recognize the text in it.
Please type in the letters/numbers that are shown in the image above.