# Badamsoft Product Exporter for WooCommerce - Export Directory Protection
# Copy this file to your export directory as .htaccess

# Deny direct access to all files
<FilesMatch ".*">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Allow access only via WordPress (wp_safe_redirect)
# Files should be served through PHP download handler

# Alternative: Allow only specific file types with authentication
# <FilesMatch "\.(csv|xlsx|json|xml)$">
#     Order Allow,Deny
#     Deny from all
# </FilesMatch>
