nginx 下禁止訪問某個目錄或文件

在nginx下要禁止訪問某個目錄或文件html

要配置nginx.confnginx

禁止訪問目錄htm

location ^~/path {io

    deny all;擴展

}配置

注意path後要是沒有"/"表示禁止訪問全部以path爲開頭的文件和目錄,加上"/"表示禁止訪問目錄/path/文件

禁止訪問文件co

location ~* /.html {path

    deny all;location

}

表示禁止訪問擴展名爲html的文件

相關文章
相關標籤/搜索