怎樣設定nginx禁止目錄執行php檔案

2020-08-11 18:00:56

設定nginx禁止目錄執行php檔案的方法:【location ~ /dir/.*.(php|php5)?$ {deny all;}】。設定完成後需要重新啓動web服務。

禁止dir目錄執行php檔案許可權

(推薦教學:)

location ~ /dir/.*.(php|php5)?$ {
deny all;
}

多個目錄

(學習視訊推薦:)

禁止dir和upload目錄執行php檔案許可權

location ~ /(dir|upload)/.*.(php|php5)?$ {
deny all;
}

設定完成後重新啓動web服務。

以上就是怎樣設定nginx禁止目錄執行php檔案的詳細內容,更多請關注php中文網其它相關文章!