# Secure Photo Access
# Photos can only be accessed through PHP script

# Deny direct access
Order Deny,Allow
Deny from all

# But allow access through serve-photo.php
<FilesMatch "serve-photo\.php">
    Allow from all
</FilesMatch>
