Html error redirect

How do I make it so that when you try to view a page on my website that doesnt exist, it goes to a different page that I specify?

Example: http://www.kirupa.com/morserules <–CLICK

That’s a changeable 404 page, you should contact your hosting company to see if it’s possible to change it.

file called .htaccess:

ErrorDocument 404 /404.html
or ErrorDocument 404 /http://mypage.com
ErrorDocument 403 /forbiddenaccess.html

(changeable for any directory - root one otherswise)

thanks