# 上传目录禁止执行任何脚本（WordPress 同款安全策略）
<FilesMatch "\.(php|php\d|phtml|phar|cgi|pl|py|sh)$">
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Deny from all
    </IfModule>
</FilesMatch>
