# 牛牛CMS 安全防护（Apache 2.4 / 2.2 双兼容）：拒绝一切 Web 直接访问
# PHP include 不受影响（仅拦截 HTTP 直连）；nginx 等价规则见 .agent/archived/deploy配置_20260810/nginx.example.conf
<IfModule mod_authz_core.c>
    Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
    Order deny,allow
    Deny from all
</IfModule>
