quick apache question
quick apache question
Out of context: Reply #5
- Started
- Last post
- 8 Responses
- ribit0
you can use a .htaccess file in any directory to override the server conf file (you don't need to be root)
Put this in the '.htaccess' file to allow indexing:
Options +Indexesand add this to set custom error pages:
ErrorDocument 404 your404page.html
ErrorDocument 403 your403page.html
etc