²é¿´/±à¼ ´úÂë
ÄÚÈÝ
# Admin folder protection # Extra layer of security for the admin interface # Deny access to this .htaccess file <Files ".htaccess"> Order Allow,Deny Deny from all </Files> # Allow only specific file <Files "index.php"> Order Allow,Deny Allow from all </Files> # Block direct access to any other files <FilesMatch "^(?!index\.php$).*$"> Order Allow,Deny Deny from all </FilesMatch> # Security headers <IfModule mod_headers.c> Header set X-Content-Type-Options "nosniff" Header set X-Frame-Options "DENY" Header set X-XSS-Protection "1; mode=block" Header set Referrer-Policy "no-referrer" </IfModule>