
					# Allow images to be displayed in <img> tags but block direct access
					<FilesMatch "\.(jpg|jpeg|png|gif|webp)$">
						Require all granted
					</FilesMatch>
					# Deny access to this directory
					<Files *>
						Order Deny,Allow
						Deny from all
					</Files>
					# Allow access to specific scripts (for secure downloads)
					<FilesMatch "admin-post.php">
						Order Allow,Deny
						Allow from all
					</FilesMatch>