setting default page for all folders with no index
is there 开发者_开发问答any way to set a default page for all folders on server that don't have an index file?
Like a general 404 page?
The idea is to prevent browsing through folders with no index file
Can this be achieved with .htaccess or php?
Put
ErrorDocument 404 /path/to/file/that/handles/404/errors.php
in your httpd.conf
However, if you're wanting to prevent folder browsing, this won't help. You'll have to disable folder browsing in the first place:
Options -Indexes
精彩评论