Announcement

Collapse
No announcement yet.

How to stop certain files being accessed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to stop certain files being accessed

    OK so that thread's been pulled for obvious reasons.

    Instead, here's how to block certain files from being accessed by any tom, dick*ead or harry:

    Open up your .htaccess

    Paste in the following:

    <Files ~ "\.fil$">
    Order allow,deny
    Deny from all
    </Files>

    You can change the .fil to be anything you want.

    You can do something similar for .htaccess itself.

    See http://www.ducea.com/2006/07/21/apac...in-file-types/

    --edit--

    I hope this change means an Actinic site will still function?
    Reusable Snore Earplugs : Sample Earplugs - Wax Earplugs - Women's Earplugs - Children's Earplugs - Music Earplugs - Sleep Masks

    #2
    Originally posted by guccij View Post

    I hope this change means an Actinic site will still function?
    It should be fine. This change simply blocks al http requests for this file type. To my knowledge Actinic accesses these files through the server file system in perl rather than through http.
    Fergus Weir - teclan ltd
    Marketing - Design - Technology

    Comment

    Working...
    X