
Originally Posted by
tsdesigns
Or just make sure no-one can see your default 404 page, like I said in that other thread
True. While you're at it you might want to create custom pages for other error messages. Different error codes show the server info as well. The .htaccess code would look something like:
Code:
ErrorDocument 400 /400.html
ErrorDocument 401 /401.html
ErrorDocument 403 /403.html
ErrorDocument 404 /404.html
ErrorDocument 500 /500.html
Then the corresponding pages would need to be created and placed in the website's root directory.
Bookmarks