Denying access to all files except index.html apache
Could someone help me with apache .htaccess file to deny access to all files and sub directories except for index.html on the documentroot for an apache server?
Order allow,deny
Deny from all
<FilesMatch index\.html>
Allow from all
</FilesMatch>