在nginx要禁止某個或一類資源,只須要增長一個location,而後在其中使用deny all便可。nginx
禁止訪問擴展名爲bat的文件,配置以下:code
location ~* /.bat { deny all; }
禁止訪問configs目錄,以及其下全部子目錄或文件,配置以下:資源
location ^~ /configs/ { deny all; }
注意上述configs後面的斜槓不能少,不然全部以configs開頭的目錄或文件都將禁止訪問。io