nginx中怎么禁止目錄PHP執(zhí)行權(quán)限
1 回答

撒科打諢
TA貢獻(xiàn)1934條經(jīng)驗(yàn) 獲得超2個(gè)贊
首先,編輯nginx的虛擬主機(jī)配置,在fastcgi的location語(yǔ)句的前面添加如下內(nèi)容:
1、單個(gè)目錄去掉PHP執(zhí)行權(quán)限
location ~ /attachments/.*.(php|php5)?$ {
deny all;
}
將attachments目錄的PHP執(zhí)行權(quán)限去掉。
2、多個(gè)目錄去掉PHP執(zhí)行權(quán)限
ocation ~ /(attachments|upload)/.*.(php|php5)?$ {
deny all;
}
將attachments、upload這二個(gè)目錄的PHP執(zhí)行權(quán)限去掉。
- 1 回答
- 0 關(guān)注
- 1007 瀏覽
添加回答
舉報(bào)
0/150
提交
取消