<Files "cron.php">
    Order Deny,Allow
    Deny from all
    # Only allow localhost (for testing)
    Allow from 127.0.0.1
    Allow from ::1
</Files>

# Also block access to any cron-related files
<FilesMatch "(cron|Cron)\.php$">
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
</FilesMatch>
