Yes.
1. Create the custom error page. If it is for 404 errors, I name it 404.html
2. I put them in their own directory, called error or errors.
3. Open .htaccess file and add line(s):
ErrorDocument 404 /error/404.html
ErrorDocument 403 /error/403.html
ErrorDocument 500 /error/500.html
for the...