Thought i would share how to set up your custom error pages. I know there is an article out there on this but honestly took me a bit to find it and it would be sort of confusing for a newbie..
So here is how..
Create a new folder in the public_html and lets call it for example: errorpages
now add this to the top of your .htaccess
ErrorDocument 401 /errorpages/401.html
ErrorDocument 403 /errorpages/403.html
ErrorDocument 404 /errorpages/404.html
ErrorDocument 500 /errorpages/500.html
and also add this line to your .htaccess
RewriteCond %{REQUEST_URI} !/errorpages/
now put your 401.html, 404.html, 403.html, 500.html to that errorpages dir.
you can prob just leave their 500.phtml file in the root, it came with the install so you can always put it back if you want to. I took it out and i got a file not found so i guess they do check for it... so just leave it be right where it is, it wont hurt anything..
thats it your done... and you can do this same thing for any special html file you wish to use, just make a special folder for it, and then add the rewrite cond statment in your htaccess ..
hope this helps