zoukankan      html  css  js  c++  java
  • AllowOverride None

    PHP Advanced and Object-Oriented Programming
    Larry Ullman
     1 <Directory />
     2 AllowOverride None
     3 </Directory>
     4 #Depending on the installation and configuration, Apache, on thestrictest level of security, will not allow .htaccess files to change Apache behavior.
     5 #The root directory (/) is the target, meaning that Apache will not allowover-rides—changes—made within any directories on the computer at all.
     6 
     7 #Another common use of an .htaccess file is to protect the contents of a directory.
     8 # Thereare two possible scenarios:
     9 #• Denying all access
    10 #• Restricting access to authorized user
    11  
    12 #To deny all access to a directory’s contents
    13 # Disable directory browsing:
    14 Options All -Indexes
    15 # Prevent folder listing:
    16 IndexIgnore *
    17 # Prevent access to any file:
    18 <FileMatch "^.*$">
    19     Order Allow, Deny
    20     Deny from all
    21 </FileMatch>
    22 
    23 #Again, this code just prevents direct access to that directory’s contents via a Webbrowser. 
    24 #A PHP script could still use include(), require(), readfile(), and other functions to access that content.
  • 相关阅读:
    C语言:SQLITE3的学习
    C语言:json库使用学习
    C语言:XML学习
    glib实践篇:接口定义与实现
    glib实践篇:父类与子类
    python简易爬虫实现
    Esxi开虚拟机测试性能
    Hyper-V虚拟化性能测试
    配置飞儿云平台的PHP系统
    CentOS6.9安装OpenVZ
  • 原文地址:https://www.cnblogs.com/rsapaper/p/5844216.html
Copyright © 2011-2022 走看看