网站首页 / 资讯 / 服务器/VPS/ 常规配置

图片或是上传目录安全性加强伪静态规则

作者:admin

图片上传目录,尤其是公共的上传目录应该禁止执行可执行文件使用以下方法

apache

.htaccess

# Block executables
<FilesMatch "\.(php|phtml|php3|php4|php5|pl|py|jsp|asp|html|htm|shtml|sh|cgi|suspected)$">
    deny from all
</FilesMatch>

nginx

location /media/ {

   ......   # Banned locations
    location ~* (\.php$|\.phtml$|\.htaccess$|\.git) {
        deny all;
    }
}


标签: 目录禁止文件执行
上一篇:NGINX 1.26 完全有效支持Http/3
下一篇:没有了

相关内容

最近更新
相关产品
综合服务邮箱: magento2#foxmail.com