Very nice tutorial, easy follow, well formatted and well explained.
ErrorDocument is also good for custom error pages
Though, I think if your site gets attacked a lot, and you block at site level, you should use a small 403 page like "<u>403</u>: No access.".
Also
Will set default pages for directory's, ordered by priority if the other isn't available, the "*" at the end, will issue a 403 if none are available, instead of listing out the directory, though, index page really shouldn't be missing any way.
ErrorDocument is also good for custom error pages
Code:
ErrorDocument 500 /500.php
ErrorDocument 404 /404.php
ErrorDocument 403 /403.php
ErrorDocument 401 /401.php
Though, I think if your site gets attacked a lot, and you block at site level, you should use a small 403 page like "<u>403</u>: No access.".
Also
Code:
DirectoryIndex index.php default.php page.php *
Will set default pages for directory's, ordered by priority if the other isn't available, the "*" at the end, will issue a 403 if none are available, instead of listing out the directory, though, index page really shouldn't be missing any way.