<Directory /var/www/html> Options -Indexes </Directory> The minus sign ( -Indexes ) disables directory listings. Restart Apache:
Options -Indexes Then upload it to the directory. If you want to block all access to the folder entirely, use: parent directory index of private images install
sudo systemctl restart apache2 Create a file named .htaccess inside the folder containing private images and add: Options -Indexes <
Have questions about a specific server setup? Consult your web server’s official documentation for "disabling directory indexes" or contact a cybersecurity professional. # Also deny access deny all
location /private_images { autoindex off; # Also deny access deny all; } Reload Nginx:
Options -Indexes Deny from all Nginx does not enable autoindexing by default, but if it's on, edit your site configuration: