No te queda de otra:
Los enlaces
El archivo unico php que va a procesar y a forzar la descarga:
Código PHP:
Ver original<?php
if (!isset($_GET['file']) || empty($_GET['file'])) { }
$root = $_SERVER['DOCUMENT_ROOT']."/imagenes/slider/";
$path = $root.$file;
$type = '';
}
if ($type == '') {
$type = "application/force-download";
}
// Definir headers
header("Content-Type: $type"); header("Content-Disposition: attachment; filename=$file"); header("Content-Transfer-Encoding: binary"); header("Content-Length: " . $size); // Descargar archivo
} else {
die("El archivo no existe."); }
?>
si almacenas las imagenes en un solo directorio no tendras mucho rollo con la configuracion