配置nginx禁止目录执行php文件的方法:【location ~ /dir/.*.(php|php5)?$ {deny all;}】。配置完成后需要重启web服务。
禁止dir目录执行php文件权限
(推荐教程:nginx教程)
location ~ /dir/.*.(php|php5)?$ { deny all; }
多个目录
(学习视频推荐:php视频教程)
禁止dir和upload目录执行php文件权限
location ~ /(dir|upload)/.*.(php|php5)?$ { deny all; }
配置完成后重启web服务。
Atas ialah kandungan terperinci 怎样配置nginx禁止目录执行php文件. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!