Ver Mensaje Individual
  #5 (permalink)  
Antiguo 18/09/2014, 12:26
Jhon Silver
 
Fecha de Ingreso: marzo-2004
Ubicación: Madrid (España)
Mensajes: 837
Antigüedad: 20 años, 1 mes
Puntos: 9
Respuesta: Limitar ficheros con una determinada extensión

He incluido este código y ahora debe haber algun problema. Algunas imagenes se ven y otras no
Código Apache:
Ver original
  1. # secure uploads directory
  2. <Directory /src/images/gohere>
  3. <Files>
  4.     Order Allow,Deny
  5.     Deny from all
  6. </Files>
  7. <FilesMatch "\.(jpg|jpeg|jpe|gif|png|tif|tiff)$">
  8.     Order Deny,Allow
  9.     Allow from all
  10. </FilesMatch>
  11. </Directory>