在nginx下要禁止訪問某個目錄或文件html
要配置nginx.confnginx
禁止訪問目錄htm
location ^~/path {io
deny all;擴展
}配置
注意path後要是沒有"/"表示禁止訪問全部以path爲開頭的文件和目錄,加上"/"表示禁止訪問目錄/path/文件
禁止訪問文件co
location ~* /.html {path
deny all;location
}
表示禁止訪問擴展名爲html的文件