摘要:nginx禁止目录执行php的方法:首先找到并打开“nginx.conf”配置文件;然后设置禁止单目录以及多目录;最后通过“service nginx restart”重启nginx即可。推荐:《PHP视频教程》ngi
nginx禁止目录执行php的方法:首先找到并打开“nginx.conf”配置文件;然后设置禁止单目录以及多目录;最后通过“service nginx restart”重启nginx即可。
推荐:《PHP视频教程》
nginx禁止目录执行php程序
为了安全起见,我们一般会对上传目录禁止运行php脚本
修改nginx.conf配置文件
禁止单目录:
location ~* ^/attachments/.*.(php|php5)$ { deny all; }
禁止多目录:
location ~* ^/(attachments|upload)/.*.(php|php5)$ { deny all; }
需要注意两点:
1、以上的配置文件代码需要放到 location ~ .php{...}上面,如果放到下面是无效的
2、attachments需要写相对路径,不能写绝对路径
3、不要忘记重启nginx呀,service nginx restart
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13